/**
 * today.css — the Today page: filling system tiles and the all-done banner.
 */

.items{display:flex;flex-direction:column;gap:14px}
.item{position:relative;border:none;border-radius:18px;background:var(--surface);overflow:hidden;box-shadow:0 1px 2px rgba(16,32,54,.04);width:100%;text-align:left;--c:var(--accent)}
.item:active{transform:scale(.992)}
.item.upcoming{cursor:default;box-shadow:none;background:var(--surface-2)}
.item.upcoming .nm,.item.upcoming .sub{color:var(--faint)}
.item .fill{position:absolute;left:0;top:0;bottom:0;width:0;background:color-mix(in srgb, var(--c) 20%, transparent);transition:width .5s cubic-bezier(.4,0,.2,1)}
.item .row{position:relative;display:flex;align-items:center;gap:13px;padding:22px 22px;min-height:44px}
.item .nm{font-weight:750;font-size:16.5px;letter-spacing:-.2px}
.item .sub{font-size:13px;color:var(--muted);margin-top:3px;font-weight:600}
.item .end{margin-left:auto;display:flex;align-items:center;gap:10px;flex:none}
.item .cnt{font-family:var(--mono);font-weight:800;font-size:14px;color:var(--ink-2);line-height:1;display:flex;align-items:center}
.item .chev{color:var(--faint);width:18px;height:18px;display:block;flex:none}
.item .check{width:32px;height:32px;border-radius:50%;display:grid;place-items:center;background:var(--c);color:#fff;font-size:17px;font-weight:900}

.alldone{text-align:center;padding:16px;border-radius:16px;background:var(--ok-wash);color:var(--ok-ink);font-weight:800;margin:22px 0 0;border:1px solid color-mix(in srgb,var(--ok) 28%,transparent)}

/* report an issue — flag something for the manager with a note + photos */
.reportbtn{display:flex;align-items:center;justify-content:center;gap:8px;width:100%;padding:15px;margin-top:26px;border-radius:14px;border:none;background:var(--accent-wash);color:var(--accent-dk);font-weight:800;font-size:14.5px}
@media (prefers-color-scheme:dark){.reportbtn{color:var(--accent)}}
:root[data-theme="dark"] .reportbtn{color:var(--accent)} :root[data-theme="light"] .reportbtn{color:var(--accent-dk)}
.reportbtn svg{width:18px;height:18px}
