/* --- FIX: POPUP MESSAGE BOX (Prevents flash and sets size) --- */
#cfsp-message-box {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 2147483647 !important;
    max-width: 90% !important; 
    background: #000 !important;
    color: #fff !important;
    border-radius: 5px !important;
    text-align: center !important;
    padding: 0 !important; 
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5) !important;
    transition: opacity 0.2s ease-in-out !important;
}
#cfsp-message-box .cfsp-message-content {
    padding: 10px 20px !important;
}
#cfsp-message-box .cfsp-message-content p {
    margin: 0 !important;
    line-height: 1.4 !important;
    font-size: 14px !important;
}
#cfsp-message-box.active {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* --- FIX: BADGE VISUALS & STABILITY LOCK (Ensures black box stays after load) --- */
/* Target the badge element directly for maximum specificity */
#cfsp-fixed-element {
    /* Stability Fixes (Ensure fixed position/display) */
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: translate(0,0) !important;
    position: fixed !important; 
    z-index: 2147483647 !important;
    right: 15px !important; 
    bottom: 15px !important; 

    /* VISUAL LOCK: Explicitly enforce the desired black style */
    background-color: #000 !important; 
    color: #FFF !important; 
    padding: 5px 10px !important; 
    border-radius: 3px !important; 
    font-size: 10px !important; 
}
#cfsp-fixed-element a {
    color: #fff !important; /* Ensure the link inside the badge is white */
    text-decoration: none !important;
}