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

    &::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 12px;
        height: 20px;
        border-radius: 3px;
        background: #f8fafc;
        border: 1px solid #64748b;
        cursor: pointer;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        transition: background 0.1s;

        &:hover {
            background: #e2e8f0;
        }
    }

    &::-moz-range-thumb {
        width: 12px;
        height: 20px;
        border-radius: 3px;
        background: #f8fafc;
        border: 1px solid #64748b;
        cursor: pointer;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        transition: background 0.1s;

        &:hover {
            background: #e2e8f0;
        }
    }
}

body, .font-sans, input, select, button {
    font-family: 'Outfit', 'M PLUS 1p', -apple-system, sans-serif !important;
}

header h1 {
    font-weight: 900;
    letter-spacing: 0.15em;
    line-height: 0.95;
}
