/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

@import url("/assets/design_system-1c4e2f41.css");

/* Base Tailwind CSS */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom Progress Slider Styles */
.progress-slider {
  background: transparent;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.progress-slider::-webkit-slider-track {
  background: transparent;
  height: 16px;
  border-radius: 4px;
}

.progress-slider::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  background: var(--color-primary);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  border: 2px solid white;
  margin-top: 0;
}

.progress-slider::-moz-range-track {
  background: transparent;
  height: 16px;
  border-radius: 4px;
  border: none;
}

.progress-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: var(--color-primary);
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  margin-top: 0;
}

.progress-slider::-webkit-slider-thumb:hover {
  background: var(--color-primary-dark);
}
