/* ========================================
   📧 EMAIL VERIFICATION BANNER
   ======================================== */
.verification-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #4dff88 0%, #00d2ff 100%);
    color: #0f1215;
    padding: 12px 20px;
    z-index: 9998;
    /* Below modals but above content */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.banner-icon {
    font-size: 1.5rem;
}

.banner-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.3;
}

.banner-text strong {
    font-weight: 700;
}

.banner-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.banner-btn {
    background: rgba(15, 18, 21, 0.9);
    color: #4dff88;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.banner-btn:hover {
    background: #0f1215;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.banner-close {
    background: transparent;
    border: none;
    color: #0f1215;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 8px;
    transition: all 0.2s;
    opacity: 0.7;
}

.banner-close:hover {
    opacity: 1;
    transform: scale(1.2);
}

/* Adjust body padding when banner is visible */
body:has(.verification-banner) {
    padding-top: 60px;
}

/* Responsive */
@media (max-width: 600px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .banner-text {
        font-size: 0.85rem;
    }

    .banner-actions {
        width: 100%;
        justify-content: center;
    }
}