/* PlaylistDock — cohesive modern slate-dark theme.
   Mobile-first, two weights, clamp() type scale, soft depth. */

:root {
  --bg: #0b0f16;
  --bg-grad: radial-gradient(1200px 600px at 50% -10%, #16203022, transparent),
             radial-gradient(900px 500px at 100% 0%, #1c2a4022, transparent);
  --surface: #141b26;
  --surface-2: #1b2533;
  --surface-3: #222e3e;
  --line: #28333f;
  --line-soft: #1f2934;
  --text: #eaf0f7;
  --muted: #93a1b3;
  --accent: #5b94ff;
  --accent-2: #7b6bff;
  --accent-grad: linear-gradient(135deg, #5b94ff, #7b6bff);
  --error: #ff6b6b;
  --ok-top: #36d399;
  --radius: 16px;
  --radius-sm: 11px;
  --pad: clamp(14px, 4vw, 24px);
  --shadow-1: 0 1px 2px rgba(0,0,0,.3);
  --shadow-2: 0 8px 24px -10px rgba(0,0,0,.5);
  --shadow-3: 0 24px 60px -16px rgba(0,0,0,.6);
  --ring: 0 0 0 3px rgba(91,148,255,.22);
  font-size: 16px;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #f4f6fa;
    --bg-grad: radial-gradient(1200px 600px at 50% -10%, #5b94ff14, transparent);
    --surface: #ffffff; --surface-2: #f1f4f9; --surface-3: #e8edf4;
    --line: #dde3ec; --line-soft: #e8edf4;
    --text: #131c27; --muted: #5c6a7b;
  }
}

* { box-sizing: border-box; }

/* The hidden attribute must always win over any display rule below. */
[hidden] { display: none !important; }

html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  background-image: var(--bg-grad);
  background-attachment: fixed;
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px var(--pad);
  background: rgba(20,27,38,.72);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
  position: sticky; top: 0; z-index: 10;
}
.brand {
  font-weight: 700; font-size: 1.18rem; letter-spacing: -.01em;
  background: var(--accent-grad); -webkit-background-clip: text;
  background-clip: text; color: transparent;
}
.topnav { display: flex; align-items: center; }
.topnav a {
  margin-left: 4px; padding: 7px 12px; font-size: .92rem; border-radius: 9px;
  color: var(--muted); transition: background .15s, color .15s;
}
.topnav a:hover { text-decoration: none; color: var(--text); background: var(--surface-2); }
.topnav a.active { color: var(--text); font-weight: 700; background: var(--surface-2); }

.wrap { max-width: 1100px; margin: 0 auto; padding: var(--pad); }

.hero { text-align: center; padding: clamp(28px, 8vw, 64px) 0 12px; }
.hero h1 {
  font-size: clamp(1.8rem, 6vw, 3rem); margin: 0 0 .35em; font-weight: 700;
  letter-spacing: -.02em; line-height: 1.1;
}
.lede { color: var(--muted); max-width: 44ch; margin: 0 auto; font-size: 1.05rem; }
.beta {
  display: inline-block; margin-top: 16px; padding: 5px 14px;
  font-size: .78rem; color: var(--accent);
  background: rgba(91,148,255,.1); border: 1px solid rgba(91,148,255,.25);
  border-radius: 999px;
}

.stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  margin: 28px 0;
}
@media (min-width: 560px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line); box-shadow: var(--shadow-2);
  border-radius: var(--radius); padding: 20px 16px; text-align: center;
  transition: transform .18s, border-color .18s;
}
.stat:hover { transform: translateY(-2px); border-color: var(--accent); }
.stat .num {
  display: block; font-size: 1.9rem; font-weight: 700; letter-spacing: -.02em;
  line-height: 1;
}
.stat .lbl { display: block; font-size: .78rem; color: var(--muted); margin-top: 8px; }

.card {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line); box-shadow: var(--shadow-2);
  border-radius: var(--radius); padding: var(--pad); margin: 18px 0;
}
.card h1, .card h2 { margin-top: 0; font-weight: 700; letter-spacing: -.01em; }
.card.login { max-width: 420px; margin-left: auto; margin-right: auto; }

.loginform { display: grid; gap: 14px; }
.loginform label { display: grid; gap: 5px; font-size: .82rem; color: var(--muted); }
.loginform input {
  font-size: 1rem; padding: 13px 14px; min-height: 48px;
  background: var(--bg); color: var(--text);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color .15s, box-shadow .15s;
}
.loginform input:focus { outline: none; border-color: var(--accent); box-shadow: var(--ring); }
.loginform button {
  min-height: 50px; font-size: 1rem; font-weight: 700; margin-top: 4px;
  background: var(--accent-grad); color: #fff; border: 0;
  border-radius: var(--radius-sm); cursor: pointer;
  transition: transform .12s, box-shadow .18s; box-shadow: var(--shadow-2);
}
.loginform button:hover { transform: translateY(-1px); box-shadow: 0 12px 28px -8px rgba(91,148,255,.5); }
.loginform button:active { transform: translateY(0); }

.muted { color: var(--muted); }
.small { font-size: .8rem; }
.error { color: var(--error); font-weight: 700; }

.footer {
  border-top: 1px solid var(--line-soft); margin-top: 56px;
  padding: 26px var(--pad); text-align: center; color: var(--muted);
}
.legal a { margin: 0 10px; color: var(--muted); font-size: .85rem; }
.legal a:hover { color: var(--text); }
.copyright { font-size: .8rem; margin: 12px 0 0; opacity: .7; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* =========================================================================
   Phase 3-5 — homepage sections, search results, admin spreadsheet grid
   ========================================================================= */

/* --- Hero search --------------------------------------------------------- */
.searchbox {
  display: flex; gap: 10px; max-width: 580px; margin: 28px auto 8px;
  flex-direction: column;
}
@media (min-width: 520px) { .searchbox { flex-direction: row; } }
.searchbox input {
  flex: 1; min-height: 54px; font-size: 1.02rem; padding: 0 18px;
  background: var(--surface); color: var(--text);
  border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-2); transition: border-color .15s, box-shadow .15s;
}
.searchbox input:focus { outline: none; border-color: var(--accent); box-shadow: var(--ring); }
.searchbox button {
  min-height: 54px; padding: 0 28px; font-size: 1rem; font-weight: 700;
  background: var(--accent-grad); color: #fff; border: 0; border-radius: 14px;
  cursor: pointer; white-space: nowrap; box-shadow: var(--shadow-2);
  transition: transform .12s, box-shadow .18s;
}
.searchbox button:hover { transform: translateY(-1px); box-shadow: 0 12px 28px -8px rgba(91,148,255,.5); }
.searchbox button:active { transform: translateY(0); }
.searchbox button {
  min-height: 48px; padding: 0 22px; font-size: 1rem; font-weight: 700;
  background: var(--accent); color: #fff; border: 0; border-radius: 12px;
  cursor: pointer; white-space: nowrap;
}
.searchbox button:disabled { opacity: .6; cursor: progress; }
.hint { text-align: center; color: var(--muted); font-size: .82rem; margin: 4px 0; }

/* --- Search results ------------------------------------------------------ */
.results { margin-top: 8px; }
.hits { display: grid; gap: 8px; margin-top: 12px; }
.hit {
  display: grid; grid-template-columns: 1fr auto auto; align-items: center;
  gap: 14px; padding: 14px 16px;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 13px;
  transition: border-color .15s, transform .15s;
}
.hit:hover { border-color: var(--accent); transform: translateX(2px); }
.hit-main { display: flex; flex-direction: column; min-width: 0; }
.hit-name { font-weight: 700; }
.hit-curator { font-size: .8rem; color: var(--muted); }
.hit-meta { font-size: .82rem; color: var(--muted); text-align: right; }

/* --- Score badges -------------------------------------------------------- */
.score-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 28px; padding: 0 8px; border-radius: 8px;
  font-weight: 700; font-size: .9rem; color: #06121f;
}
.score-top   { background: #36d399; }
.score-good  { background: #79d70f; color: #06121f; }
.score-mid   { background: #f5c518; }
.score-weak  { background: #ff924c; }
.score-avoid { background: #ff6b6b; color: #fff; }
.score-na    { background: var(--line); color: var(--muted); }

/* --- How it works -------------------------------------------------------- */
.how, .why { margin: 40px 0; }
.how h2, .why h2 { text-align: center; font-weight: 700; margin-bottom: 20px; }
.steps { display: grid; gap: 14px; }
@media (min-width: 640px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px; position: relative;
}
.step .n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent); color: #fff; font-weight: 700; margin-bottom: 10px;
}
.step h3 { margin: 0 0 6px; font-size: 1.05rem; }
.step p { margin: 0; color: var(--muted); font-size: .9rem; }

.cards { display: grid; gap: 14px; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px;
}
.why-card h3 { margin: 0 0 6px; font-size: 1.05rem; }
.why-card p { margin: 0; color: var(--muted); font-size: .9rem; }

/* =========================================================================
   ADMIN — top bar links, add card, modern spreadsheet grid
   ========================================================================= */
.topnav a.active { color: var(--text); font-weight: 700; }

.admin { max-width: 100%; }
.admin-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap; gap: 10px; margin-bottom: 4px;
}
.admin-head h1 { margin: 0; }
.api-panel {
  min-width: 230px; background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 13px; padding: 11px 14px; font-size: .8rem;
}
.api-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.api-label { color: var(--muted); font-weight: 700; }
.api-val { color: var(--text); font-variant-numeric: tabular-nums; }
.api-val strong { color: var(--text); }
.api-bar { height: 6px; background: var(--bg); border-radius: 999px; margin: 8px 0 6px; overflow: hidden; }
.api-bar span { display: block; height: 100%; background: var(--accent-grad); border-radius: 999px; transition: width .4s ease; }
.api-sub { color: var(--muted); font-size: .72rem; }
.api-panel[data-warn="1"] .api-bar span { background: #f5c518; }
.api-panel[data-warn="1"] .api-label { color: #f5c518; }

/* Add card */
.add-card {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line); box-shadow: var(--shadow-2);
  border-radius: var(--radius); padding: 16px; margin: 16px 0;
}
.add-bar { display: flex; gap: 8px; flex-wrap: wrap; }
.add-bar input {
  flex: 1; min-width: 200px; min-height: 46px; padding: 0 15px; font-size: .95rem;
  background: var(--bg); color: var(--text);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color .15s, box-shadow .15s;
}
.add-bar input:focus { outline: none; border-color: var(--accent); box-shadow: var(--ring); }
.add-bar button, .bulk-panel button, .btn {
  min-height: 46px; padding: 0 18px; font-weight: 700; font-size: .95rem;
  background: var(--accent-grad); color: #fff; border: 0; border-radius: var(--radius-sm);
  cursor: pointer; white-space: nowrap; box-shadow: var(--shadow-1);
  transition: transform .12s, box-shadow .18s;
}
.add-bar button:hover, .bulk-panel button:hover, .btn:hover { transform: translateY(-1px); }
.add-bar button.secondary, .bulk-panel button.secondary, .outreach-actions .secondary {
  background: var(--surface-2); color: var(--text); border: 1px solid var(--line);
}
button:disabled { opacity: .55; cursor: progress; }
.bulk-panel { display: grid; gap: 10px; margin-top: 12px; }
.bulk-panel textarea {
  width: 100%; padding: 12px; font-size: .9rem; border-radius: 10px;
  background: var(--surface-2); color: var(--text); border: 1px solid var(--line);
  resize: vertical;
}

.admin-msg { padding: 11px 14px; border-radius: 10px; margin-bottom: 14px; font-size: .9rem; }
.admin-msg.ok  { background: rgba(54,211,153,.14); border: 1px solid #36d399; }
.admin-msg.err { background: rgba(255,107,107,.14); border: 1px solid var(--error); color: var(--error); }
.grid-note { margin-top: 10px; }

/* Grid: horizontal scroll everywhere, sticky Playlist column, modern surfaces */
.grid-wrap {
  overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius);
  -webkit-overflow-scrolling: touch; background: var(--surface);
  box-shadow: var(--shadow-2); scrollbar-width: thin;
}
.grid-wrap::-webkit-scrollbar { height: 10px; }
.grid-wrap::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 999px; border: 3px solid var(--surface); }
.grid { border-collapse: separate; border-spacing: 0; width: 100%; min-width: 1120px; font-size: .88rem; }
.grid th, .grid td {
  padding: 12px 14px; border-bottom: 1px solid var(--line-soft);
  text-align: left; white-space: nowrap;
  max-width: 220px; overflow: hidden; text-overflow: ellipsis;
  vertical-align: middle;
}
.grid thead th {
  position: sticky; top: 0; z-index: 3; background: var(--surface-2);
  font-weight: 700; font-size: .8rem; letter-spacing: -.01em; color: var(--muted);
  padding-top: 14px; padding-bottom: 14px;
}
.grid tbody tr { transition: background .12s; }
.grid tbody tr:hover td { background: var(--surface-2); }
.grid tbody tr:last-child td { border-bottom: 0; }
.grid td.num, .grid th.num { text-align: right; font-variant-numeric: tabular-nums; }

/* Playlist name = the primary entity: heavier, larger, never muted */
.grid td.sticky-col { font-weight: 700; font-size: .92rem; color: var(--text); }

/* Editable cells: no permanent affordance — only on hover/focus (per choice) */
.grid td[contenteditable] { cursor: text; min-width: 96px; }
.grid td[contenteditable]:hover { background: var(--surface-3); box-shadow: inset 0 0 0 1px var(--line); }
.grid td[contenteditable]:focus {
  outline: none; box-shadow: inset 0 0 0 2px var(--accent), var(--ring);
  background: var(--bg); white-space: normal; overflow: visible; max-width: none;
  border-radius: 6px;
}
.grid td.readonly { color: var(--muted); }
.grid td.manual { box-shadow: inset 3px 0 0 #f5c518; }
.grid td.manual:hover { box-shadow: inset 3px 0 0 #f5c518, inset 0 0 0 1px var(--line); }

/* Sticky first data column (Playlist) */
.grid .sticky-col {
  position: sticky; left: 0; z-index: 2; background: var(--surface);
  box-shadow: 1px 0 0 var(--line);
}
.grid thead .sticky-col { z-index: 4; background: var(--surface-2); }
.grid tbody tr:hover .sticky-col { background: var(--surface-2); }

.grid tr.saving { opacity: .55; }
.grid tr.saved td { background: rgba(54,211,153,.18) !important; transition: background .5s; }
.grid .empty-row td { text-align: center; color: var(--muted); padding: 48px 20px; white-space: normal; max-width: none; }
.grid .empty-row td:hover { background: transparent; }

/* Score badge: compact, full-strength colour */
.col-score { width: 58px; text-align: center; }
.grid td.col-score { text-align: center; }
.score-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 34px; height: 26px; padding: 0 7px; border-radius: 7px;
  font-weight: 700; font-size: .85rem; font-variant-numeric: tabular-nums;
}

/* Actions: icon buttons, comfortable tap targets */
.col-actions { width: 148px; }
.col-actions button {
  min-width: 36px; min-height: 36px; margin: 0 2px; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface-3); color: var(--muted);
  border: 1px solid var(--line); border-radius: 9px; cursor: pointer; font-size: 1rem;
  transition: color .12s, border-color .12s, background .12s;
}
.col-actions button:hover { border-color: var(--accent); color: var(--accent); background: var(--surface-2); }
.col-actions .act-delete:hover { border-color: var(--error); color: var(--error); }

/* Outreach overlay */
.outreach-panel[hidden] { display: none !important; }
.outreach-panel {
  position: fixed; inset: 0; z-index: 50; padding: 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8, 12, 18, .62);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  animation: pd-fade .18s ease;
}
.outreach-inner {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line); border-radius: 20px;
  padding: 26px; width: 100%; max-width: 500px; display: grid; gap: 14px;
  box-shadow: 0 24px 60px -12px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.03) inset;
  animation: pd-rise .22s cubic-bezier(.2,.8,.2,1);
}
.outreach-inner h3 { margin: 0; font-size: 1.25rem; }
.outreach-inner label { display: grid; gap: 5px; font-size: .78rem; color: var(--muted); letter-spacing: .02em; }
.outreach-inner input, .outreach-inner textarea {
  padding: 12px 13px; font-size: .92rem; border-radius: 11px;
  background: var(--bg); color: var(--text); border: 1px solid var(--line);
  transition: border-color .15s, box-shadow .15s;
}
.outreach-inner input:focus, .outreach-inner textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(79,140,255,.18);
}
.outreach-actions { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 2px; }
.outreach-actions .btn, .outreach-actions button {
  text-decoration: none; text-align: center; line-height: 46px; padding: 0 20px;
  border-radius: 11px;
}

@keyframes pd-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pd-rise { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .outreach-panel, .outreach-inner { animation: none; }
}

/* ---- Mobile: keep priority columns in view, comfortable tap targets ----- */
@media (max-width: 620px) {
  .grid { min-width: 720px; font-size: .9rem; }
  .grid th, .grid td { padding: 11px 12px; }
  /* priority columns get a touch more room; others stay reachable by scroll */
  .col-actions { width: 120px; }
  .col-actions button { min-width: 38px; min-height: 38px; }
  .admin-head { flex-direction: column; }
  .budget { align-self: stretch; text-align: center; }
}

/* =========================================================================
   Statistiken page
   ========================================================================= */
.stats-page h1 { letter-spacing: -.02em; }
.metric-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 20px 0 28px;
}
@media (min-width: 720px) { .metric-grid { grid-template-columns: repeat(3, 1fr); } }
.metric {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line); box-shadow: var(--shadow-2);
  border-radius: var(--radius); padding: 20px;
}
.metric-num { display: block; font-size: 2rem; font-weight: 700; letter-spacing: -.02em; line-height: 1; }
.metric-lbl { display: block; font-size: .9rem; margin-top: 8px; }
.metric-sub { display: block; font-size: .76rem; color: var(--muted); margin-top: 3px; }

.stats-cols { display: grid; gap: 16px; }
@media (min-width: 800px) { .stats-cols { grid-template-columns: 1fr 1fr; } }

.rank, .feed { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 10px; }
.rank li { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; }
.rank-name { font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rank-meta { font-size: .8rem; color: var(--muted); white-space: nowrap; }

.feed li { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: baseline; font-size: .9rem; }
.feed-type {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700; padding: 3px 9px; border-radius: 999px; white-space: nowrap;
}
.feed-entered { background: rgba(54,211,153,.16); color: #36d399; }
.feed-moved   { background: rgba(245,197,24,.16); color: #f5c518; }
.feed-dropped { background: rgba(255,107,107,.16); color: var(--error); }
.feed-song { font-weight: 700; }
.feed-meta { grid-column: 2; font-size: .78rem; color: var(--muted); }

/* =========================================================================
   Header login dropdown (hamburger-style)
   ========================================================================= */
.login-menu { position: relative; }
.login-toggle {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 14px 8px 12px; font-size: .92rem; font-weight: 700;
  color: var(--text); background: var(--surface-2);
  border: 1px solid var(--line); border-radius: 11px; cursor: pointer;
  transition: border-color .15s, background .15s;
}
.login-toggle:hover { border-color: var(--accent); }
.login-toggle.open { border-color: var(--accent); background: var(--surface-3); }
.login-toggle-bars { display: inline-flex; flex-direction: column; gap: 3px; width: 16px; }
.login-toggle-bars span {
  height: 2px; width: 100%; background: currentColor; border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.login-toggle.open .login-toggle-bars span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.login-toggle.open .login-toggle-bars span:nth-child(2) { opacity: 0; }
.login-toggle.open .login-toggle-bars span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.login-pop {
  position: absolute; right: 0; top: calc(100% + 10px); z-index: 30;
  width: min(320px, calc(100vw - 28px));
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line); border-radius: 16px; padding: 18px;
  box-shadow: var(--shadow-3); display: grid; gap: 12px;
  animation: pd-rise .18s cubic-bezier(.2,.8,.2,1);
}
.login-pop h2 { margin: 0; font-size: 1.05rem; }
.login-pop::before {
  content: ""; position: absolute; right: 22px; top: -7px; width: 12px; height: 12px;
  background: var(--surface); border-left: 1px solid var(--line); border-top: 1px solid var(--line);
  transform: rotate(45deg);
}
@media (prefers-reduced-motion: reduce) { .login-pop { animation: none; } }

/* ---- Mobile grid: comfortable tap targets, priority columns lead -------- */
@media (max-width: 620px) {
  .grid { min-width: 680px; font-size: .92rem; }
  .grid th, .grid td { padding: 13px 13px; }
  .col-actions { width: 132px; }
  .col-actions button { min-width: 40px; min-height: 40px; }
  .admin-head { flex-direction: column; }
  .budget { align-self: stretch; text-align: center; }
  .add-bar { flex-direction: column; }
  .add-bar input, .add-bar button { width: 100%; }
}