/* Radix Slider — matches jQuery UI slider appearance from cardojo.css */

.radix-slider-root {
  position: relative;
  display: flex;
  align-items: center;
  user-select: none;
  touch-action: none;
  width: 100%;
  height: 24px;
  margin: 0 0 12px;
}

.radix-slider-track {
  background: #1f1f1f;
  position: relative;
  flex-grow: 1;
  border-radius: 100px;
  height: 24px;
}

.radix-slider-range {
  position: absolute;
  background-color: #E00201;
  border-radius: 100px;
  height: 100%;
}

.radix-slider-thumb {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #F60000;
  border: 2px solid #fff;
  outline: none;
  cursor: grab;
  box-shadow: none;
  transition: background 0.1s;
}

.radix-slider-thumb:active {
  cursor: grabbing;
  background: #666;
  box-shadow: 0 0 5px 1px #333 inset;
}

.radix-slider-thumb:focus-visible {
  box-shadow: 0 0 0 2px rgba(230, 0, 1, 0.4);
}
