#schedule-clockin {
  max-width: 350px;
}
#schedule-container {
  display: table;
  float: left;
  width: 100%;
  margin-bottom: 15px;
}
.slider-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.range-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
  position: relative;
}

.range-slider {
  position: relative;
  width: 100%;
  height: 8px;
  background: #ddd; /* Línea de fondo */
  border-radius: 5px;
}

.range-slider::before {
  content: "";
  position: absolute;
  height: 8px;
  background: #47bfc3; /* Color entre los manejadores */
  border-radius: 5px;
  z-index: 1;
}

input[type="range"] {
  position: absolute;
  width: 100%;
  pointer-events: none;
  appearance: none;
  background: none;
  margin: 0;
  top: -3px;
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 15px;
  height: 15px;
  background: #47bfc3;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 2;
}

.time-labels {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 14px;
  margin-top: 5px;
}
