/* Find Account Page Styles */
/* Import common styles first */
@import url('login_common.css');

.help-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.help-popup-content {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    border-radius: 12px;
    padding: 25px;
    margin: 20px;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    border-left: 4px solid #6E9F2B;
    animation: popupSlideIn 0.3s ease-out;
    position: relative;
}

.help-popup-content h6 {
    color: #6E9F2B;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 16px;
}

.help-popup-content ul {
    margin-bottom: 0;
    padding-left: 20px;
}

.help-popup-content li {
    margin-bottom: 8px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Dark mode styles - enhanced for better visibility */
@media (prefers-color-scheme: dark) {
    .help-popup {
        background-color: rgba(0, 0, 0, 0.75);
    }
    
    .help-popup-content {
        background-color: rgba(27, 41, 49, 0.95);
        color: var(--text-primary);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7);
        border: 1px solid rgba(232, 241, 245, 0.2);
        border-left-color: #6E9F2B;
        backdrop-filter: blur(10px);
    }
    
    .help-popup-content h6 {
        color: #6E9F2B;
    }
    
    .help-popup-content li {
        color: var(--text-secondary);
    }
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.button-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-back {
    margin-left: auto;
}

#helpButton:hover i {
    color: #17a2b8 !important;
    transform: scale(1.1);
    transition: all 0.2s ease;
} 