/* Verification Banner Component */
.verification-banner {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 16px 0;
    position: relative;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideDown 0.4s ease-out;
    margin-top: 6em;
    /* Account for fixed header height */
}

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

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

.verification-banner__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.verification-banner__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.verification-banner__icon-svg {
    width: 20px;
    height: 20px;
    color: white;
}

.verification-banner__text {
    flex: 1;
    min-width: 0;
}

.verification-banner__title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: white;
    line-height: 1.3;
}

.verification-banner__message {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.verification-banner__actions {
    flex-shrink: 0;
}

.verification-banner__button {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    text-align: center;
}

.verification-banner__button--primary {
    background-color: white;
    color: #ff6b35;
    border: 1px solid white;
}

.verification-banner__button--primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
    color: #ff6b35;
    text-decoration: none;
}

.verification-banner__help {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-left: 12px;
    display: flex;
    align-items: center;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .verification-banner {
        margin-top: 5em;
        /* Slightly smaller header on mobile */
    }

    .verification-banner__content {
        padding: 0 16px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .verification-banner__help {
        margin-left: 0;
        margin-top: 8px;
        text-align: center;
        order: 3;
    }

    .verification-banner__text {
        order: 1;
    }

    .verification-banner__actions {
        order: 2;
    }

    .verification-banner__icon {
        order: 0;
    }
}

/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
    .verification-banner {
        box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    }
}

/* Animation for dismissal */
.verification-banner.dismissing {
    animation: slideUp 0.3s ease-in forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}