.wachplan-wrapper {
  position: relative;
  left: 50%;
  transform: translateX(-97.5%);
  width: 800px; /* optional */
}
/* Container für eine Statistik-Zeile */
.wachplan-stat-row {
    margin-bottom: 4px;
    font-size: 12px;
}

/* Label links (Wachleiter, Wachgänger, …) */
.wachplan-stat-label {
    display: inline-block;
    width: 80px;
}

/* Balken-Hintergrund */
.wachplan-stat-bar {
    display: inline-block;
    height: 10px;
    background: #eee;
    width: 200px; /* maximale Balkenbreite */
    margin: 0 6px;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
    border-radius: 3px;
}

/* Gefüllter Anteil */
.wachplan-stat-bar-fill {
    height: 100%;
    width: 0;
    background: #999;
}

/* Farben je Rolle */
.wachplan-stat-wl  .wachplan-stat-bar-fill { background: #e74c3c; } /* Wachleiter = rot */
.wachplan-stat-wg  .wachplan-stat-bar-fill { background: #3498db; } /* Wachgänger = blau */
.wachplan-stat-3m  .wachplan-stat-bar-fill { background: #9b59b6; } /* 3. Mann = lila */
.wachplan-stat-ges .wachplan-stat-bar-fill { background: #f1c40f; } /* Gesamt = gelb */
