/* Base Elements */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

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

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(167, 139, 250, 0.2);
    /* brand-400 with opacity */
    border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(167, 139, 250, 0.4);
}

/* Glassmorphism Panels */
.glass-card {
    background: rgba(25, 23, 40, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Custom Range Sliders */
.range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    outline: none;
    transition: background 0.2s;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #a78bfa;
    /* brand-400 */
    cursor: pointer;
    box-shadow: 0 0 10px rgba(167, 139, 250, 0.5);
    transition: transform 0.1s;
}

.range-slider.rate-slider::-webkit-slider-thumb {
    background: #d946ef;
    /* fuchsia-500 */
    box-shadow: 0 0 10px rgba(217, 70, 239, 0.5);
}

.range-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: none;
    border-radius: 50%;
    background: #a78bfa;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(167, 139, 250, 0.5);
    transition: transform 0.1s;
}

.range-slider:active::-webkit-slider-thumb {
    transform: scale(1.2);
}

/* Toast Animation */
.toast-show {
    transform: translateY(0) translateX(-50%) !important;
    opacity: 1 !important;
}

/* Utils */
.hidden {
    display: none !important;
}