.volume-control {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.modern-slider {
  -webkit-appearance: none;
  width: 150px;
  height: 8px;
  border-radius: 5px;
  background: linear-gradient(to right, #f68e23 0%, #f68e23 50%, #444 50%, #444 100%);
  outline: none;
  cursor: pointer;
}

.modern-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f68e23;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(246, 142, 35, 0.6);
  margin-top: -6px;
}

.modern-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f68e23;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 10px rgba(246, 142, 35, 0.6);
  margin-top: -6px;
}

.modern-slider::-webkit-slider-runnable-track {
  background: transparent;
  height: 8px;
  border-radius: 5px;
}

.modern-slider::-moz-range-track {
  background: transparent;
  height: 8px;
  border-radius: 5px;
}

/* RTL Support - Keep slider direction LTR in Arabic */
body[dir="rtl"] .modern-slider {
  direction: ltr;
}

body[dir="rtl"] .volume-control {
  flex-direction: row-reverse;
}
