/* Trainingsapp – Dark, colorblind-aware Theme.
   Bewusst KEINE Google Fonts (brachen im Docker-Setup das JS) -> System-Font-Stack.
   Hervorhebungen nie allein über Farbton: zusätzlich Helligkeit, Muster (SVG) und Text-Chips. */

:root {
  --bg:         #0d1117;
  --bg-2:       #161b22;
  --bg-3:       #1c2128;
  --panel:      #161b22;
  --border:     #30363d;
  --border-2:   #21262d;
  --text:       #e6edf3;
  --text-dim:   #adbac7;
  --muted:      #768390;
  --accent:     #f0883e;   /* Amber – passt zu Body-Map Primärmuster */
  --accent-2:   #b07a45;   /* gedämpftes Amber – sekundär */
  --accent-dim: #3d2a17;
  --danger:     #cf5b5b;
  --danger-bg:  #3a1d1d;
  --ok:         #57ab5a;
  --radius:     10px;
  --radius-sm:  7px;
  --shadow:     0 6px 24px rgba(0,0,0,.4);

  /* Body-Map */
  --bm-silhouette: #1c2128;
  --bm-muscle:     #2d333b;
  --bm-caption:    #768390;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
          Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,
          "Liberation Mono", monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
h1 { font-size: 1.5rem; margin: 0 0 .25rem; }
h2 { font-size: 1.15rem; margin: 0 0 .5rem; }
h3 { font-size: 1rem; margin: 0 0 .4rem; }

/* ── Layout ─────────────────────────────────────────── */
.layout { display: flex; min-height: 100vh; }

.sidebar {
  width: 230px;
  flex-shrink: 0;
  background: var(--bg-2);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 1rem .75rem;
  position: sticky;
  top: 0;
  height: 100vh;
}
.brand {
  display: flex; align-items: center; gap: .55rem;
  font-weight: 700; font-size: 1.05rem;
  padding: .35rem .5rem 1rem;
}
.nav { display: flex; flex-direction: column; gap: 2px; }
.nav-link {
  display: block;
  padding: .55rem .7rem;
  border-radius: var(--radius-sm);
  color: var(--text-dim);
  font-weight: 500;
  border-left: 3px solid transparent;
}
.nav-link:hover { background: var(--bg-3); text-decoration: none; color: var(--text); }
.nav-link.active {
  background: var(--bg-3);
  color: var(--text);
  border-left-color: var(--accent);
}
.sidebar-foot { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--border); }
.user-box { display: flex; flex-direction: column; gap: .35rem; padding: .25rem .5rem .6rem; }
.user-name { font-weight: 600; }
.user-role { align-self: flex-start; }
.logout { color: var(--muted); font-size: .9rem; }

.view { flex: 1; padding: 1.75rem 2rem; max-width: 1100px; width: 100%; }

/* ── Login ──────────────────────────────────────────── */
.login-body {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh; padding: 1rem;
  background:
    radial-gradient(900px 500px at 50% -10%, rgba(240,136,62,.07), transparent),
    var(--bg);
}
.login-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 2.25rem 2rem;
  width: 100%; max-width: 380px;
  text-align: center;
}
.login-logo { margin-bottom: .5rem; }
.login-sub { color: var(--muted); margin: 0 0 1.5rem; }
.login-actions { display: flex; flex-direction: column; gap: .75rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem .9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-3);
  color: var(--text);
  font: inherit; font-weight: 600;
  cursor: pointer;
  transition: background .12s, border-color .12s;
}
.btn:hover { background: #262c36; text-decoration: none; }
.btn-primary { background: var(--accent); border-color: var(--accent); color: #1b1300; }
.btn-primary:hover { background: #ffa861; }
.btn-danger { background: var(--danger-bg); border-color: #5e2c2c; color: #f0a0a0; }
.btn-danger:hover { background: #4a2424; }
.btn-ghost { background: transparent; }
.btn-ghost:hover { background: var(--bg-3); }
.btn.sm, .btn-ghost.sm { padding: .3rem .6rem; font-size: .85rem; }

.icon-btn {
  background: transparent; border: none; color: var(--muted);
  cursor: pointer; font-size: 1rem; padding: .2rem .4rem;
  border-radius: 6px; line-height: 1;
}
.icon-btn:hover { background: var(--bg-3); color: var(--text); }

/* ── Generic bits ───────────────────────────────────── */
.muted { color: var(--muted); }
.sm { font-size: .85rem; }
.desc { color: var(--text-dim); }
.error { color: #f0a0a0; background: var(--danger-bg); border: 1px solid #5e2c2c;
         padding: .6rem .8rem; border-radius: var(--radius-sm); }

.page-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.25rem; flex-wrap: wrap;
}
.back-link { display: inline-block; color: var(--muted); margin-bottom: .75rem; }

.pill {
  display: inline-flex; align-items: center;
  padding: .12rem .55rem; border-radius: 999px;
  font-size: .78rem; font-weight: 600;
  border: 1px solid var(--border);
  background: var(--bg-3); color: var(--text-dim);
}
.pill-accent { background: var(--accent-dim); border-color: #5a3d1f; color: var(--accent); }

.cat-badge {
  display: inline-block; padding: .2rem .55rem;
  border-radius: 6px; font-size: .8rem; font-weight: 600;
  background: var(--bg-3); border: 1px solid var(--border); color: var(--text-dim);
}
.cat-badge.sm { font-size: .72rem; padding: .1rem .45rem; }

.panel {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.1rem 1.2rem; margin-bottom: 1.25rem;
}

/* ── Dashboard ──────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; margin-bottom: 1.5rem; }
.stat-card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.1rem;
}
.stat-num { font-size: 1.9rem; font-weight: 700; color: var(--accent); line-height: 1.1; }
.stat-label { color: var(--muted); font-size: .85rem; margin-top: .2rem; }

.bars { display: flex; flex-direction: column; gap: .55rem; }
.bar-row { display: grid; grid-template-columns: 120px 1fr 42px; align-items: center; gap: .6rem; }
.bar-label { color: var(--text-dim); font-size: .9rem; }
.bar-track { background: var(--bg-3); border: 1px solid var(--border-2); border-radius: 6px; height: 16px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--accent); border-radius: 6px 0 0 6px; min-width: 2px; }
.bar-val { text-align: right; font-variant-numeric: tabular-nums; color: var(--muted); font-size: .85rem; }

.chips-row { display: flex; flex-wrap: wrap; gap: .4rem; }

/* ── Übungen ────────────────────────────────────────── */
.filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.25rem; }
.filters input, .filters select { min-width: 150px; }

.ex-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1rem; }
.ex-card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem; cursor: pointer;
  transition: border-color .12s, transform .08s;
}
.ex-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.ex-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: .5rem; margin-bottom: .5rem; }
.ex-equip { color: var(--muted); font-size: .85rem; }
.muscle-chips { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .5rem; }

.chip {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .15rem .55rem; border-radius: 6px; font-size: .78rem; font-weight: 600;
  border: 1px solid var(--border);
}
/* Colorblind-safe: Primär = hell + linker Akzentbalken; Sekundär = gedämpft + gepunkteter Rahmen */
.chip-primary {
  background: var(--accent-dim); color: var(--accent);
  border-color: #5a3d1f; border-left: 3px solid var(--accent);
}
.chip-secondary {
  background: var(--bg-3); color: var(--text-dim);
  border-style: dashed; border-color: var(--accent-2);
}

/* ── Übungs-Detail + Body-Map ───────────────────────── */
.detail-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; flex-wrap: wrap; }
.detail-actions { display: flex; gap: .5rem; flex-wrap: wrap; }
.detail-grid { display: grid; grid-template-columns: minmax(280px, 360px) 1fr; gap: 1.5rem; align-items: start; }
@media (max-width: 760px) { .detail-grid { grid-template-columns: 1fr; } }

.bodymap-wrap {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem;
}
.bodymap-figures { display: flex; gap: .5rem; justify-content: center; }
.bodymap { width: 50%; max-width: 160px; height: auto; }
.silhouette { opacity: 1; }
.muscle { fill: var(--bm-muscle); stroke: var(--border); stroke-width: .5; transition: fill .15s; }
.muscle.secondary { fill: url(#patSecondary); stroke: var(--accent-2); }
.muscle.primary   { fill: url(#patPrimary);   stroke: var(--accent); stroke-width: 1; }
.bm-caption { fill: var(--bm-caption); font-size: 9px; font-family: var(--font); }

.bodymap-legend { display: flex; gap: 1rem; justify-content: center; margin-top: .75rem; font-size: .82rem; color: var(--text-dim); }
.legend-item { display: inline-flex; align-items: center; gap: .4rem; }
.swatch { width: 16px; height: 16px; border-radius: 4px; display: inline-block; border: 1px solid var(--border); }
.swatch-primary { background: var(--accent); border-color: var(--accent); }
.swatch-secondary { background: var(--bg-3); border: 1px dashed var(--accent-2); }

/* ── Videos ─────────────────────────────────────────── */
.video-list { display: flex; flex-direction: column; gap: 1rem; margin: .75rem 0; }
.video-item { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: .75rem; }
.video-meta { display: flex; justify-content: space-between; align-items: center; gap: .5rem; margin-bottom: .5rem; }
.video-frame { position: relative; aspect-ratio: 16/9; background: #000; border-radius: var(--radius-sm); overflow: hidden; }
.video-frame iframe, .video-frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-link { word-break: break-all; }
.add-video { display: flex; gap: .5rem; margin-top: .75rem; flex-wrap: wrap; }
.add-video input { flex: 1; min-width: 160px; }

/* ── Formulare / Inputs ─────────────────────────────── */
input, select, textarea {
  background: var(--bg); color: var(--text);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: .5rem .65rem; font: inherit;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); }
textarea { resize: vertical; min-height: 70px; width: 100%; }
label { font-size: .9rem; color: var(--text-dim); display: block; margin-bottom: .3rem; }

.form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: flex; flex-direction: column; gap: .35rem; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.form-actions { display: flex; gap: .5rem; justify-content: flex-end; margin-top: .5rem; }
.inline-check { display: flex; flex-direction: row; align-items: center; gap: .5rem; }
.inline-check input { width: auto; }

.muscle-select { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: .35rem; }
.muscle-opt {
  display: flex; align-items: center; gap: .45rem;
  padding: .35rem .5rem; border: 1px solid var(--border);
  border-radius: 6px; background: var(--bg-2); font-size: .85rem; cursor: pointer;
}
.muscle-opt input { width: auto; }

/* ── Sets-Editor / Tracking ─────────────────────────── */
.sets-wrap { display: flex; flex-direction: column; gap: .4rem; }
.sets-head, .set-row {
  display: grid; grid-template-columns: 40px 1fr 1fr 1fr 32px;
  gap: .5rem; align-items: center;
}
.sets-head { color: var(--muted); font-size: .8rem; }
.set-num { color: var(--muted); font-variant-numeric: tabular-nums; }
.track-start { display: flex; gap: .6rem; align-items: flex-end; flex-wrap: wrap; margin-bottom: 1.25rem; }

.logs { display: flex; flex-direction: column; gap: 1rem; }
.log-day { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: .9rem 1rem; }
.log-day > h3 { color: var(--accent); }
.log-item { display: flex; justify-content: space-between; gap: .75rem; padding: .55rem 0; border-top: 1px solid var(--border-2); }
.log-item:first-of-type { border-top: none; }
.log-main { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.log-sets { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .2rem; }
.set-pill {
  font-family: var(--mono); font-size: .78rem;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 5px; padding: .1rem .45rem; color: var(--text-dim);
}

/* ── Trainingspläne ─────────────────────────────────── */
.plan-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.plan-card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem; cursor: pointer;
  transition: border-color .12s, transform .08s;
}
.plan-card:hover { border-color: var(--accent); transform: translateY(-2px); }

.plan-days { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.plan-day { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem 1.1rem; }
.plan-day-head { display: flex; justify-content: space-between; align-items: center; gap: .75rem; margin-bottom: .6rem; }
.plan-ex-list { display: flex; flex-direction: column; gap: .4rem; }
.plan-ex { display: flex; justify-content: space-between; align-items: center; gap: .75rem;
           padding: .55rem .65rem; background: var(--bg-2); border: 1px solid var(--border-2); border-radius: var(--radius-sm); }
.plan-ex-main { display: flex; align-items: center; gap: .55rem; flex-wrap: wrap; }
.plan-ex-meta { color: var(--muted); font-size: .85rem; font-variant-numeric: tabular-nums; }
.plan-ex-actions { display: flex; gap: .25rem; }

/* ── Verwaltung ─────────────────────────────────────── */
.user-table { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.user-head, .user-row {
  display: grid; grid-template-columns: 1.4fr 1.6fr 1fr 90px;
  gap: .75rem; align-items: center; padding: .7rem 1rem;
}
.user-head { background: var(--bg-3); color: var(--muted); font-size: .82rem; font-weight: 600; }
.user-row { border-top: 1px solid var(--border-2); }

/* ── Modal ──────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(1,4,9,.7);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 4vh 1rem; z-index: 100; overflow-y: auto;
}
.modal {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: 12px; box-shadow: var(--shadow);
  width: 100%; max-width: 460px;
}
.modal-wide { max-width: 720px; }
.modal-head { display: flex; align-items: center; justify-content: space-between;
              padding: .9rem 1.1rem; border-bottom: 1px solid var(--border); }
.modal-head h2 { margin: 0; }
.modal-body { padding: 1.1rem; }

/* ── Toasts ─────────────────────────────────────────── */
.toasts { position: fixed; right: 1rem; bottom: 1rem; display: flex; flex-direction: column; gap: .5rem; z-index: 200; }
.toast {
  background: var(--bg-3); border: 1px solid var(--border); color: var(--text);
  border-left: 4px solid var(--muted);
  padding: .6rem .9rem; border-radius: var(--radius-sm); box-shadow: var(--shadow);
  opacity: 0; transform: translateY(8px); transition: opacity .25s, transform .25s; max-width: 320px;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast-success { border-left-color: var(--ok); }
.toast-error { border-left-color: var(--danger); }
.toast-info { border-left-color: var(--accent); }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 720px) {
  .layout { flex-direction: column; }
  .sidebar { width: auto; height: auto; position: static; flex-direction: row; flex-wrap: wrap;
             align-items: center; gap: .5rem; }
  .nav { flex-direction: row; flex-wrap: wrap; }
  .sidebar-foot { margin: 0 0 0 auto; padding: 0; border: none; display: flex; align-items: center; gap: .75rem; }
  .user-box { flex-direction: row; align-items: center; padding: 0; }
  .view { padding: 1.25rem; }
  .form-row.two { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   UI-Refresh: Icons, Such-Picker, moderne Politur
   ════════════════════════════════════════════════════════════ */

/* Inline-SVG-Icons (erben Textfarbe, konsistent über alle Systeme) */
.ic { display: inline-flex; align-items: center; justify-content: center; line-height: 0; flex-shrink: 0; }
.ic svg { display: block; }
.btn .ic { margin-right: -1px; }

/* Icon-Buttons: dezent, mit klarem Hover/Fokus */
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; padding: 0;
  border: 1px solid transparent; border-radius: 8px;
  color: var(--muted); background: transparent;
  cursor: pointer; transition: background .12s, color .12s, border-color .12s;
}
.icon-btn:hover { background: var(--bg-3); color: var(--text); border-color: var(--border); }
.icon-btn:focus-visible { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(240,136,62,.25); }
.icon-btn-danger:hover { background: var(--danger-bg); color: #f0a0a0; border-color: #5e2c2c; }

/* ── Suchbarer Übungs-Picker ───────────────────────────────── */
.combo { position: relative; }
.combo > .ic {
  position: absolute; left: 11px; top: 50%; transform: translateY(-50%);
  color: var(--muted); pointer-events: none; z-index: 1;
}
.combo-input { width: 100%; padding-left: 36px; }
.combo-list {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 50;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 10px; box-shadow: var(--shadow);
  max-height: 280px; overflow-y: auto; padding: 5px; display: none;
}
.combo.open .combo-list { display: block; }
.combo-item {
  display: flex; align-items: center; justify-content: space-between; gap: .6rem;
  padding: .5rem .6rem; border-radius: 7px; cursor: pointer;
}
.combo-item:hover, .combo-item.active { background: var(--bg-3); }
.combo-item.active { box-shadow: inset 3px 0 0 var(--accent); }
.combo-name { font-weight: 500; }
.combo-empty { padding: .6rem; }

/* ════════════════════════════════════════════════════════════
   Moderne Politur (Overrides – gewinnen gegenüber Basis oben)
   ════════════════════════════════════════════════════════════ */
:root {
  --radius: 12px;
  --radius-sm: 9px;
  --shadow: 0 10px 30px -8px rgba(0,0,0,.55);
  --shadow-sm: 0 2px 8px -2px rgba(0,0,0,.4);
}

body { font-size: 15px; letter-spacing: .1px; }

/* Einheitlicher, weicher Fokus-Ring für alle Eingaben */
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(240,136,62,.18);
}
input, select, textarea { transition: border-color .12s, box-shadow .12s; }

/* Sidebar: etwas mehr Tiefe, aktive Items deutlicher */
.sidebar { background: linear-gradient(180deg, #161b22 0%, #12161d 100%); }
.brand { letter-spacing: .2px; }
.nav-link { transition: background .12s, color .12s, border-color .12s; }
.nav-link.active { box-shadow: inset 0 0 0 1px var(--border-2); }

/* Buttons: klarere Hierarchie + sanfter Lift */
.btn {
  border-radius: 10px; padding: .55rem 1rem;
  transition: background .12s, border-color .12s, transform .08s, box-shadow .12s;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(180deg, #f59a55 0%, #f0883e 100%);
  border-color: #d9772f; box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: linear-gradient(180deg, #ffac68 0%, #f7944c 100%); }
.btn:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(240,136,62,.3); }

/* Panels & Karten: weicher, mit dezenter Tiefe */
.panel, .stat-card, .ex-card, .plan-card, .log-day, .plan-day, .bodymap-wrap, .video-item {
  border-radius: var(--radius);
}
.panel { box-shadow: var(--shadow-sm); }
.stat-card {
  background: linear-gradient(180deg, var(--bg-2) 0%, #12171e 100%);
  box-shadow: var(--shadow-sm);
}
.stat-card:hover { border-color: #3d444d; }
.ex-card, .plan-card {
  transition: border-color .14s, transform .1s, box-shadow .14s;
}
.ex-card:hover, .plan-card:hover { box-shadow: var(--shadow); }

/* Headings etwas prägnanter */
h1 { letter-spacing: -.3px; }
.page-head { margin-bottom: 1.5rem; }

/* Modal: weicher Auftritt + Blur */
.modal-overlay { backdrop-filter: blur(3px); animation: overlay-in .15s ease; }
.modal { border-radius: 16px; animation: modal-in .18s cubic-bezier(.2,.8,.3,1); }
@keyframes overlay-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes modal-in { from { opacity: 0; transform: translateY(10px) scale(.98); } to { opacity: 1; transform: none; } }

/* Toasts: Icon-freundliche Höhe, weicher Schatten */
.toast { border-radius: 11px; }

/* Tabellen-Rows etwas luftiger */
.user-row, .user-head { padding: .8rem 1rem; }

/* Set-/Log-Pills moderner */
.set-pill { border-radius: 7px; }
.cat-badge, .pill { border-radius: 8px; }

/* ── Dashboard: Heutiges Training ───────────────────────────── */
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .9rem; }
.panel-head h2 { margin: 0; }
.today-list { display: flex; flex-direction: column; gap: .65rem; }
.today-item {
  background: var(--bg-2); border: 1px solid var(--border-2);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm); padding: .7rem .85rem;
}
.today-ex { display: flex; align-items: center; gap: .55rem; flex-wrap: wrap; margin-bottom: .35rem; }
.today-item .log-sets { margin-top: .15rem; }
