html, body {
    font-family: 'Roboto', sans-serif;
}

.mud-success {
    background-color: var(--mud-palette-success);
}

.mud-error {
    background-color: var(--mud-palette-error);
}

.mud-warning {
    background-color: var(--mud-palette-warning);
}

.mud-info {
    background-color: var(--mud-palette-info);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(155, 155, 155, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(155, 155, 155, 0.7);
}

/* Card animations */
.mud-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.mud-card:hover {
    transform: translateY(-2px);
}

/* Status indicator pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

.status-pulse {
    animation: pulse 2s infinite;
}

/* Response time bar chart */
.response-bar {
    transition: height 0.3s ease-in-out;
}

/* Loading skeleton */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
