/* Custom Sliders */
.custom-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 9999px;
    background: #e2e8f0;
    outline: none;
    transition: background 0.15s ease-in-out;
}

.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #14b8a6;
    cursor: pointer;
    box-shadow: 0 0 0 4px white, 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.1s;
}

.custom-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #14b8a6;
    cursor: pointer;
    border: 4px solid white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.1s;
}

.custom-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.custom-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
}

.custom-slider::-webkit-slider-thumb:active {
    transform: scale(0.95);
}

.custom-slider::-moz-range-thumb:active {
    transform: scale(0.95);
}

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 20px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background-color: #94a3b8;
}

/* Miscellaneous utility classes missing in generic tailwind CDN setup */
.tabular-nums {
    font-variant-numeric: tabular-nums;
}
