/* Grundlayout */
body {
  margin: 0;
  font-family: "Segoe UI", Helvetica, Arial, sans-serif;
  background: #89aaf4; /* heller Blauton */
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.card {
  position: relative;
  width: 700px;
  height: 400px;
  background: #89aaf4;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  padding: 20px;
}

/* Icon oben links */
.calendar-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 28px;
  cursor: pointer;
}

/* Doppelpfeile links */
.arrows {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  cursor: pointer;
}

/* Wetter-Panel rechts */
.weather-panel {
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  background: #fff8e5;
  width: 160px;
  border-radius: 40px;
  text-align: center;
  padding: 20px 10px;
  color: #447;
}

.weather-panel .sun {
  font-size: 60px;
  margin-bottom: 10px;
}

.temp {
  font-size: 28px;
  margin-bottom: 6px;
}

.rain {
  font-size: 16px;
  margin-bottom: 20px;
}

.bikes {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 4px;
}

.bikes-sub {
  font-size: 14px;
}

.bike-icon {
  font-size: 40px;
  margin-top: 10px;
}

/* Zeit/Ort rechts daneben */
.time-city {
  position: absolute;
  right: 60px;
  bottom: 30px;
  text-align: center;
  color: #fff;
}

.time {
  font-size: 48px;
  margin: 0;
}

.city {
  font-size: 20px;
  border-top: 1px solid #fff;
  padding-top: 4px;
}

/* Chart-Bereich */
.chart {
  position: absolute;
  bottom: 60px;
  left: 80px;
  right: 260px;
  height: 140px;
}

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

/* Datumsachse */
.dates {
  position: absolute;
  bottom: 20px;
  left: 80px;
  right: 80px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.road {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: repeating-linear-gradient(
    to right,
    #fff 0 40px,
    #89aaf4 40px 70px
  );
}
