@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
    background-color: #111827;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}

/* Animation for live indicator */
@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}
.live-indicator {
    animation: pulse 1.5s infinite;
}

/* Highlight filter buttons */
.highlight-filter {
    transition: all 0.2s ease;
}

.highlight-filter.active {
    background-color: #dc2626 !important;
    color: white !important;
}

/* Highlight item badges */
.highlight-item span {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
