/* Custom scrollbar to match minimalist theme */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

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

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

.dark ::-webkit-scrollbar-thumb {
    background: #3f3f46;
}

::-webkit-scrollbar-thumb:hover {
    background: #d4d4d8;
}

.dark ::-webkit-scrollbar-thumb:hover {
    background: #52525b;
}

/* Base custom styles to ensure imports or font loading works if tailwind is slow */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

input[type=range] {
    -webkit-appearance: none;
    background: transparent;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #10b981;
    cursor: pointer;
    margin-top: -6px;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: #e5e7eb;
    border-radius: 2px;
}

.dark input[type=range]::-webkit-slider-runnable-track {
    background: #3f3f46;
}