body {
    background-color: #171717;
    color: #f5f5f5;
    margin: 0;
    padding: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #171717;
}

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

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

/* Range input styling for better visibility in dark mode */
input[type=range]::-webkit-slider-runnable-track {
    background: #262626;
    border-radius: 8px;
    height: 8px;
}

input[type=range]::-webkit-slider-thumb {
    margin-top: -6px;
}
