/* 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 2s infinite;
}

/* Additional status colors */
.bg-purple-100 {
    background-color: #f3e8ff;
}
.text-purple-800 {
    color: #6b21a8;
}

/* Server status indicators */
.server-indicator {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}
.server-indicator::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 4px;
}
.server-indicator.online::before {
    background-color: #10b981;
}
.server-indicator.warning::before {
    background-color: #f59e0b;
}
.server-indicator.offline::before {
    background-color: #ef4444;
}
