/* Basic reset already handled by Tailwind preflight */

/* Custom Cursor interactions */
#simCanvas {
    touch-action: none;
    /* Prevent scrolling on mobile while interacting */
}

/* Range Input Customization for Webkit */
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: currentColor;
    /* Uses text color from parent/class */
    margin-top: -4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border: 2px solid white;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    background: #374151;
    border-radius: 4px;
}

input[type=range]:focus::-webkit-slider-thumb {
    transform: scale(1.1);
}