/*
 * 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.
 */

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  background: #e8e5e1;
  border-radius: 9999px;
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #db2777;
  cursor: pointer;
}

input[type="range"]:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #db2777;
}

input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: none;
  border-radius: 50%;
  background: #db2777;
  cursor: pointer;
}

input[type="range"]:focus::-moz-range-thumb {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #db2777;
}

.sortable-drag-hidden {
  display: none !important;
}

.sortable-ghost [data-drag-handle] {
  opacity: 1 !important;
  color: #db2777;
}
