.subtitle {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.alert-box {
  border-left: 4px solid var(--yellow);
  background: rgba(250,204,21,0.05);
}

.alert-box ul {
  margin-top: 10px;
  padding-left: 18px;
}

.metric {
  position: relative;
}

.metric h2 {
  margin: 10px 0;
  font-size: 28px;
}

.metric.red { border-top: 2px solid var(--red); }
.metric.blue { border-top: 2px solid var(--blue); }
.metric.purple { border-top: 2px solid var(--purple); }

.badge {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 12px;
  background: rgba(255,255,255,0.08);
  padding: 4px 8px;
  border-radius: 8px;
}

.progress {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  margin-top: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 6px;
  background: var(--accent);
  border-radius: 6px;
  transition: width 1s ease;
}

.progress-fill.accent {
  background: var(--accent);
}

.progress-fill.purple-fill {
  background: var(--purple);
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
}

.bar {
  margin-top: 20px;
}

.bar span {
  display: block;
  margin-bottom: 4px;
}

.schedule {
  padding: 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  margin-top: 12px;
  transition: var(--transition);
}

.schedule.active {
  background: rgba(34,197,94,0.1);
  border: 1px solid var(--accent);
}

.forecast {
  display: grid;
  grid-template-columns: repeat(7,1fr);
  gap: 15px;
  margin-top: 20px;
}

.day {
  text-align: center;
  padding: 15px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  transition: var(--transition);
}

.day:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.schedule-item {
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 12px;
  background: #2a3245;
  cursor: pointer;
  transition: all 0.3s ease;
}

.schedule-item.active {
  background: rgba(0, 255, 140, 0.15);
  border: 1px solid #00ff8c;
}

.schedule-item:hover {
  transform: translateX(5px);
}