/* Custom styles not covered by Tailwind */
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #3b82f6; /* Tailwind blue-500 */
    cursor: pointer;
    margin-top: -4px;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
    transition: all 0.2s ease-in-out;
}

input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    background: #4b5563; /* Tailwind gray-600 */
    border-radius: 4px;
}

input[type=range]:focus {
    outline: none;
}
