/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 07 2025 | 04:44:25 */
/* --- Profile Completion Notice Pop-up Style (Final) --- */

#profile-notice-popup {
    position: fixed;
    top: 80px;
    right: 20px;
    background-color: #FECACA !important;
    border: 1px solid #FCA5A5 !important;
    color: #721C24;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 99999;
    max-width: 380px !important; /* UPDATED: Made the box slightly wider */
    font-size: 1.1rem !important;
    line-height: 1.5;
    
    /* Animation Properties */
    opacity: 0;
    transform: translateX(20px);
    animation: slideInFade 0.5s forwards;
    animation-delay: 1.5s !important;
}

#profile-notice-popup p {
    margin: 0 0 15px 0;
    padding: 0;
    color: #721C24 !important;
    padding-right: 25px !important; 
}

/* Styles to make the link look like a button */
#profile-notice-popup a {
    display: inline-block;
    background-color: #ffffff;
    color: #721C24 !important;
    font-weight: bold;
    text-decoration: none !important;
    padding: 10px 18px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.2s ease-in-out;
}

#profile-notice-popup a:hover {
    background-color: #f1f1f1;
    transform: translateY(-1px);
}

#profile-notice-popup .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #721C24;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}

@keyframes slideInFade {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}