﻿/* CSS for the header and footer of the page */

.mud-toolbar {
    height: auto !important;
}

.layout-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: auto;
}

.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

@media (max-width: 300px) {
    .footer-content > * {
        flex-direction: column;
    }
}

/* Test server indicator styles - Global CSS to avoid scoping issues */
.test-server-indicator {
    background: linear-gradient(135deg, #ff6b35, #ff4757) !important;
    color: white !important;
    font-weight: bold !important;
    border-radius: 6px !important;
    padding: 8px 12px !important;
    margin-right: 10px !important;
    font-size: 0.85rem !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
    animation: pulse-glow 2s infinite !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    display: inline-block !important;
    z-index: 1000 !important;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 0 8px rgba(255, 107, 53, 0.1);
    }
    100% {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(255, 107, 53, 0.4);
    }
}
