/**
 * Zeitraum-Slider Styles
 */

:root {
  --hintergrund: #ccc;
  --auswahl: #008cff;
  --border: none;
}

#zeitraum {
  position: fixed;
  left: 0;
  top: 5vh;
  bottom: calc(5vh + 50px);
  width: 50px;
  min-width: 50px;
  max-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: visible; /* Knöpfe dürfen über Rand hinaus */
}

#zeitraum-streifen {
  position: relative;
  width: 6px;
  height: 100%;
  background: none;
  border-radius: 3px;
  left: 50%;
  transform: translateX(-50%);
}

.zeitraum-streifen-text {
  font-size: 12px;
  color: #555;
  white-space: nowrap;
}

.zeitraum-knopf {
  position: absolute;
  left: -25px;
  background: var(--auswahl);
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
  padding: 4px 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  color: var(--hintergrund);
  border: var(--border);
  z-index: 9999;
}

#auswahl-bereich {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  background: var(--auswahl);
  border-radius: 5px;
  pointer-events: none;
  border: var(--border);
}
