@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.font-geist-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

body {
    font-family: 'Inter', sans-serif;
}

input[type="range"] {
    -webkit-appearance: none;
    height: 6px;
    background: #e5e7eb;
    border-radius: 4px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #111827;
    cursor: pointer;
    transition: background 0.15s ease-in-out;
}

input[type="range"]::-webkit-slider-thumb:hover {
    background: #4b5563;
}

input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: none;
    border-radius: 50%;
    background: #111827;
    cursor: pointer;
    transition: background 0.15s ease-in-out;
}

input[type="range"]::-moz-range-thumb:hover {
    background: #4b5563;
}

canvas {
    touch-action: none;
}
