@tailwind base;
@tailwind components;
@tailwind utilities;

.font-hind {
    font-family: 'Hind Siliguri', sans-serif;
}

body {
    overflow: hidden; 
    overscroll-behavior: none;
}

/* Smooth Sidebar Scroll */
aside::-webkit-scrollbar {
    width: 5px;
}
aside::-webkit-scrollbar-track {
    background: transparent;
}
aside::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 10px;
}
aside::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

/* Custom Range Input */
input[type=range] {
    -webkit-appearance: none; 
    background: transparent; 
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background: white; 
    margin-top: -5px; 
    box-shadow: 0 0 0 2px currentColor, 0 2px 4px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: transform 0.1s;
}
input[type=range]::-webkit-slider-thumb:active {
    transform: scale(1.2);
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    border-radius: 2px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
    animation: fadeIn 0.3s ease-out forwards;
}
