/* Extracted from verwaltungsoberflaeche.html */
.vo-dashboard {
  padding: 5rem 0;
  background: #ffffff;
  position: relative;
}
.vo-dashboard__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.vo-dashboard__header {
  text-align: center;
  margin-bottom: 2rem;
}
.vo-dashboard__heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #111;
}
.vo-dashboard__subtext {
  color: #555;
  font-size: 1.05rem;
  margin-top: 0.5rem;
}
/* Slider */
.vo-dashboard__slider-wrap {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
}
.vo-dashboard__slider-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.vo-dashboard__slider-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #111;
}
.vo-dashboard__slider-range {
  font-size: 0.85rem;
  color: #64748b;
}
.vo-dashboard__slider-range span {
  font-weight: 600;
  color: #111;
}
.vo-dashboard__slider {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: #e5e7eb;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}
.vo-dashboard__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #66ff7e;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  cursor: grab;
}
.vo-dashboard__slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #66ff7e;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  cursor: grab;
}
.vo-dashboard__slider-label {
  text-align: center;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 0.5rem;
}
/* KPI Grid */
.vo-dashboard__kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .vo-dashboard__kpis {
    grid-template-columns: repeat(2, 1fr);
  }
}
.vo-kpi {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  transition: all 0.3s ease;
}
.vo-kpi:hover {
  border-color: #66ff7e;
  box-shadow: 0 4px 16px rgba(102,255,126,0.12);
  transform: translateY(-2px);
}
.vo-kpi__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.vo-kpi__value {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #111;
}
.vo-kpi__unit {
  font-size: 0.9rem;
  font-weight: 400;
  color: #64748b;
}
/* Charts Grid */
.vo-dashboard__charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .vo-dashboard__charts {
    grid-template-columns: 1fr;
  }
}
.vo-chart-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.vo-chart-card:hover {
  border-color: #66ff7e;
  box-shadow: 0 8px 24px rgba(102,255,126,0.1);
}
.vo-chart-card__title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #374151;
  margin-bottom: 1rem;
}
.vo-chart-card__canvas {
  width: 100%;
  position: relative;
}
.vo-chart-card__canvas canvas {
  display: block;
  max-width: 100%;
}
.vo-chart-card--full {
  grid-column: 1 / -1;
}

