/* Custom dashboard variables and CSS overlays */
:root {
    --bg-primary: #111827;
    --bg-secondary: #1f2937;
    --border-color: #374151;
}

/* Custom scrollbars for clean look */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #111827;
}

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

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

/* Grid & Layout tweaks */
.chart-container {
    width: 100%;
}

/* Badge variants */
.badge-active {
    background-color: rgb(6, 78, 59);
    color: rgb(167, 243, 208);
}

.badge-inactive {
    background-color: rgb(153, 27, 27);
    color: rgb(254, 226, 226);
}

.badge-failed {
    background-color: rgb(153, 27, 27);
    color: rgb(254, 226, 226);
}

.badge-unknown {
    background-color: rgb(55, 65, 81);
    color: rgb(243, 244, 246);
}

/* Transitions */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

/* Form overrides */
select, input {
    color-scheme: dark;
}
