/* ===========================================================
   TRAINING LIST
=========================================================== */

#training-list-container {
    padding: 1rem;
    background: #121214;
    border: 1px dashed #2a2a2e;
    border-radius: 12px;
}

.training-entry {
    padding: 0.9rem 0.6rem;
    border-bottom: 1px solid #222;
    cursor: pointer;
    transition: background var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    white-space: nowrap;
    border-radius: 6px;
}

.training-entry:last-child {
    border-bottom: none;
}

.training-entry:hover {
    background: #1b1c1f;
}

.training-entry .row-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    align-items: center;
    gap: 0.5rem;
}

.training-entry strong {
    font-weight: 600;
}

.training-entry p {
    margin: 0;
    color: var(--text-muted);
}

.training-entry .row-main p:last-child {
    text-align: right;
}

/* Kleine Sets-Zeile */
.training-entry .row-sets {
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0.8;
}

/* SET-LISTE SCHÖN AUSGERICHTET */
.set-line {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;

    font-size: 0.85rem;
    padding: 2px 0;
    color: var(--text-muted);
}

.set-col {
    white-space: nowrap;
}

/* Name links füllt die gesamte Breite */
.set-col.name {
    text-align: left;
}

/* Reps und Gewicht eng rechts */
.set-col.reps,
.set-col.weight {
    text-align: right;
    min-width: 40px;
}

/* Einheitliche Einheitenanzeige */

/* Reps → zeigt × wenn Wert vorhanden ist */
.reps-val:not(:empty)::after {
    content: "×";
    margin-left: 0px;
    font-size: 0.82rem;
    font-weight: 400;
    opacity: 0.7;
}

/* Weight → zeigt kg wenn Wert vorhanden ist */
.weight-val:not(:empty)::after {
    content: "kg";
    margin-left: 0px;
    font-size: 0.82rem;
    font-weight: 400;
    opacity: 0.7;
}

/* Leere Felder → zeigen — */
.reps-val:empty::after,
.weight-val:empty::after {
    content: "—";
    opacity: 0.5;
}


.daytype { display:inline-flex; align-items:center; gap:6px; }
.daytype-dot {
  width:10px; height:10px; border-radius:999px;
  background: var(--type-color, transparent);
}