/* Global Styles */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Canvas Specifics */
canvas {
    touch-action: none;
    -webkit-tap-highlight-color: transparent;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Range Input Customization */
input[type="range"] {
    -webkit-appearance: none;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #1e293b;
    cursor: pointer;
    transition: background .15s ease-in-out;
}
input[type="range"]::-webkit-slider-thumb:hover {
    background: #334155;
}
input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border: none;
    border-radius: 50%;
    background: #1e293b;
    cursor: pointer;
    transition: background .15s ease-in-out;
}
input[type="range"]::-moz-range-thumb:hover {
    background: #334155;
}

/* Ad Slots */
ins.adsbygoogle {
    display: block;
}