﻿.maintenance-banner {
    background: #ffcc00;
    color: #222;
    padding: 16px 24px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    animation: fadeIn 1s ease-out, pulse 2.5s infinite ease-in-out;
    max-width: 600px;
    margin: 40px auto;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gentle pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}
