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

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

/* Animation for status badges */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.pulse-warning {
    animation: pulse 1s infinite;
}

.pulse-critical {
    animation: pulse 0.5s infinite;
}

.bg-purple-50 {
    background-color: #f5f3ff;
}
.text-purple-800 {
    color: #5b21b6;
}
.text-purple-900 {
    color: #4c1d95;
}
.bg-purple-100 {
    background-color: #ede9fe;
}
