/* ==============================================
     ACCESSIBILITY ENHANCEMENTS
     ============================================== */

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

/* ==============================================
     READING SPEED SLIDER STYLING
     ============================================== */

/* Custom slider styling */
#reading-speed-slider::-webkit-slider-thumb {
    appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #3b82f6;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

#reading-speed-slider::-moz-range-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #3b82f6;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

#reading-speed-slider::-webkit-slider-track {
    background: #e5e7eb;
    border-radius: 4px;
}

#reading-speed-slider::-moz-range-track {
    background: #e5e7eb;
    border-radius: 4px;
}