  

.OT-container {

gap: 1rem;
width: 80%vw;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

svg {
  width: 100%;
  height: 100%;
}

.day-group text {
  text-anchor: middle;
  dominant-baseline: middle;
}

.day-label {
  font-size: 1.2rem;
  font-weight: 700;
  fill: #fff;
}

.day-time {
  font-size: 1rem;
  font-weight: 700;
  fill: rgb(22, 182, 203);
}

.center-bar {
  position: absolute;
  top: 51.50%;
  left: 51.50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 160px;
  background: #004d4d;
  padding: 1.2rem 2.5rem;
  border-radius: 8px;
  border: 10px solid rgb(22, 182, 203);
  box-shadow: 0 0 20px rgba(71, 72, 72, 0.5);
  text-align: center;
  z-index: 2;
  transform-origin: 50% 50%;
  line-height: 1.2;
  animation: pulseColorShift 3s ease-in-out infinite;
}

@keyframes pulseColorShift {
  0% {
    transform: translate(-50%, -50%) scale(1);
    background-color: #004d4d;
    border-color: #16b6cb;
    box-shadow: 0 0 20px rgba(22, 182, 203, 0.4);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.15);
    background-color: #006b6b;
    border-color: #00e5ff;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.6);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    background-color: #004d4d;
    border-color: #16b6cb;
    box-shadow: 0 0 20px rgba(22, 182, 203, 0.4);
  }
}



.day-group {
  background: #004d4d; /* Andere Tage am Ring */
  border-radius: 8px;
  padding: 10px;
  display: flex; /* Für Flexbox */
  justify-content: center; /* Horizontal zentrieren */
  align-items: center; /* Vertikal zentrieren */
  text-align: center; /* Text zentrieren */
}

.center-bar .day-label {
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  text-align: center;
}

.center-bar .day-time {
  font-size: 1.8rem;
  font-weight: 800;
  color: rgb(22, 182, 203);
}

.circle-ring {
  fill: none;
  stroke: #66c2cc; /* Türkisblau passend zum Eisblau im Hintergrund */
  stroke-width: 10;
  opacity: 0.6;
  animation: scaleRing 3s ease-in-out infinite;
  transform-origin: 50% 50%; /* Zentrum des Rings als Drehpunkt */
}

@keyframes scaleRing {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}


.center-img {
  position: absolute;
  left: 52.5%;
  transform: translateX(-50%);
  width: 200px; /* oder was immer passt */
  height: auto;
  z-index: 1; /* Unter der center-bar, aber über dem Hintergrund */
}

.top-img {
  top: calc(50% - 210px); /* Position über der center-bar */
}

.bottom-img {
  top: calc(50% + 140px); /* Position unter der center-bar */
}
