/* Prefixing to ensure uniqueness */
.perfect-proxy-img-overlay {
    position: absolute;
    /* Reset basic properties to avoid inheriting theme styles */
    box-sizing: border-box;
    margin: 0;
    padding: 3px 6px;
    background-color: rgba(0, 0, 0, 0.85);
    color: #ffffff !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
    font-size: 11px !important;
    line-height: 1.3 !important;
    font-weight: normal !important;
    letter-spacing: 0px;
    text-transform: none;
    border-top-left-radius: 4px;
    border-bottom-right-radius: 0px;
    /* Square corner for the edge */

    /* Ensure it sits on top */
    z-index: 2147483647;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.8);
}

/* Ensure no text decoration/underlines from parent links bleed in if we were inside them (we are in body so safe usually, but good practice) */
.perfect-proxy-img-overlay * {
    text-decoration: none !important;
    color: inherit !important;
}