/* Test Banner Styles */
.test-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626);
    color: white;
    text-align: center;
    padding: 8px 16px;
    font-weight: bold;
    font-size: 14px;
    z-index: 9999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: testBannerPulse 2s ease-in-out infinite alternate;
}

.test-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.test-banner-icon {
    font-size: 16px;
    animation: testBannerIconSpin 3s linear infinite;
}

.test-banner-text {
    font-family: 'Arial', sans-serif;
}

@keyframes testBannerPulse {
    0% {
        background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626);
    }
    100% {
        background: linear-gradient(90deg, #b91c1c, #dc2626, #b91c1c);
    }
}

@keyframes testBannerIconSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Adjust body padding when banner is present */
body.has-test-banner {
    padding-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .test-banner {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .test-banner-content {
        gap: 6px;
    }
    
    .test-banner-icon {
        font-size: 14px;
    }
    
    body.has-test-banner {
        padding-top: 32px;
    }
} 