/**
 * My Calendar – Wochenansicht: Vormittag / Nachmittag als Zeilen
 * v6
 */

:root {
  --mc-color-accent: rgb(12, 51, 105);
  --mc-label-width:  4rem;
}

/* ─── Leere Zelle im thead ────────────────────────────────────────── */
.mc-slot-label-cell--date {
  width: var(--mc-label-width);
  min-width: var(--mc-label-width);
}

/* ─── Label-Zelle links (Vorm. / Nachm.) ─────────────────────────── */
.mc-slot-label-cell {
  width: var(--mc-label-width);
  min-width: var(--mc-label-width);
  padding: 0.4rem 0.3rem;
  vertical-align: middle;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--mc-color-accent);
  border-right: 1px solid rgba(12, 51, 105, 0.15);

}

/* ─── Slot-Zeilen: kein Hintergrund, nur dezente Trennlinie ──────── */
tr.mc-slot-row--vormittag td.mc-slot-cell,
tr.mc-slot-row--vormittag td.mc-slot-label-cell {
  vertical-align: top;
  padding: 0.35rem .4rem;
  border-top: 1px solid rgba(12, 51, 105, 0.12);
  background-color: white;
}

tr.mc-slot-row--nachmittag td.mc-slot-cell,
tr.mc-slot-row--nachmittag td.mc-slot-label-cell {
  vertical-align: top;
  padding: 0.35rem .4rem;
  border-top: 1px solid rgba(12, 51, 105, 0.08);
  background-color: white;
}

/* ─── Leer-Zustand ────────────────────────────────────────────────── */
.mc-slot-empty {
  color: rgba(12, 51, 105, 0.25);
  font-size: 0.8rem;
}

/* ─── Events ──────────────────────────────────────────────────────── */
td.mc-slot-cell article.calendar-event {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.82rem;
  line-height: 1.3;
  border-bottom: 1px solid rgba(12, 51, 105, 0.08);
}

td.mc-slot-cell article.calendar-event:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

td.mc-slot-cell article .event-title {
  font-size: 0.82rem;
  font-weight: 600;
  margin: 0 0 0.1rem;
  color: var(--mc-color-accent);
}

td.mc-slot-cell article .event-title a {
  color: inherit;
  text-decoration: none;
}

td.mc-slot-cell article .event-title a:hover {
  text-decoration: underline;
}

td.mc-slot-cell .mc_tb,
td.mc-slot-cell .mc_te {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: .8;
  text-decoration: none;
}

/* ─── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 700px) {
  :root { --mc-label-width: 2.5rem; }
  .mc-slot-label-cell { font-size: 0.55rem; }
}