@font-face {
  font-family: 'Futura Bold';
  src: url('assets/Futura-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --red: #E30613;
  --red-dark: #b8050f;
  --dark: #1a1a1a;
  --gray: #6b6b6b;
  --bg: #f5f5f5;
  --radius: 18px;
  --font-app: 'Futura Bold', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-app);
  background: #ddd;
  display: flex;
  justify-content: center;
}

.phone {
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  background: #fff;
  position: relative;
  padding-bottom: 140px;
}

/* ---------- TOPBAR ---------- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 8px;
}
.topbar--title { justify-content: center; }
.avatar-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  font-size: 18px;
}
.brand-text {
  font-family: var(--font-app);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.5px;
  color: var(--dark);
  text-transform: lowercase;
}
.brand-text::first-letter { color: var(--red); }
.bell { font-size: 20px; }
.page-title {
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 1px;
}

/* ---------- STATION STRIP ---------- */
.station-strip {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 6px 20px 14px;
}
.station-strip-item {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--bg);
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 11px;
  color: var(--dark);
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  padding: 2px;
}
.station-strip-item.active {
  border-color: var(--red);
  color: var(--red);
}
.station-strip-item img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }

/* ---------- HERO ---------- */
.hero {
  margin: 10px 20px 18px;
  background: linear-gradient(135deg, #cfe4f7, #eef6fd);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
  min-height: 150px;
  cursor: pointer;
}
.hero-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.hero-title {
  font-size: 26px;
  font-weight: 900;
  color: var(--dark);
  max-width: 62%;
  line-height: 1.15;
}
.hero-sub {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray);
  max-width: 62%;
}
.hero-photo {
  position: absolute;
  right: -10px; top: 0; bottom: 0;
  width: 44%;
  background-size: cover;
  background-position: center;
}
.hero-play {
  position: absolute;
  right: 20px; bottom: 20px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--red);
  color: var(--red);
  font-size: 16px;
  cursor: pointer;
  z-index: 2;
}

/* ---------- STATION BUTTONS ---------- */
.station-buttons {
  display: flex;
  gap: 12px;
  padding: 0 20px 6px;
}
.station-btn {
  flex: 1;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 16px 10px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform .12s ease, opacity .12s ease;
}
.station-btn:active { transform: scale(0.97); }
.station-btn.is-playing { background: var(--dark); }
.station-btn .dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
}

/* ---------- SECTION TITLES ---------- */
.section-title {
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  margin: 26px 20px 12px;
}
.section-title.small { font-size: 16px; margin-top: 22px; }

/* ---------- PROMO ---------- */
.promo-grid { padding: 0 20px; }
.promo-card--wide {
  background: linear-gradient(135deg, #2b2b2b, #111);
  color: #fff;
  border-radius: var(--radius);
  padding: 20px;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.promo-card-title { font-weight: 900; font-size: 16px; }
.promo-card-sub { color: #ccc; font-size: 13px; margin-top: 4px; }

.promo-banner {
  margin: 16px 20px 10px;
  background: var(--red);
  color: #fff;
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.promo-banner-sub { font-size: 13px; opacity: 0.9; }
.promo-banner-title { font-size: 24px; font-weight: 900; }
.promo-banner-icon { font-size: 30px; }

/* ---------- VIEWS ---------- */
.view { display: none; }
.view.active { display: block; }

/* ---------- PROGRAMMERING VANDAAG (schuifbalk) ---------- */
.today-schedule {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 20px 4px;
  scroll-snap-type: x proximity;
}
.today-schedule-card {
  flex: 0 0 auto;
  width: 130px;
  background: var(--bg);
  border-radius: 14px;
  padding: 10px;
  cursor: pointer;
  scroll-snap-align: start;
}
.today-schedule-card.is-live {
  background: #fde3e3;
  border: 1.5px solid var(--red);
}
.today-schedule-photo {
  width: 100%;
  height: 70px;
  border-radius: 10px;
  background: #ddd center/cover no-repeat;
  margin-bottom: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: #999;
}
.today-schedule-live-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  margin-bottom: 3px;
}
.today-schedule-time { font-size: 11px; color: var(--gray); font-weight: 700; }
.today-schedule-name { font-size: 12.5px; font-weight: 800; line-height: 1.2; margin-top: 2px; }
.today-schedule-empty { color: #999; font-size: 13px; padding: 6px 20px 0; }

/* ---------- MINI PLAYER: logo + track ---------- */
.mini-player-logo {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: #333 center/cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex: 0 0 auto;
  overflow: hidden;
}
.mini-player-track {
  font-size: 11px;
  color: var(--red);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
}

/* ---------- STATION SWITCHER (overlay) ---------- */
.station-switcher {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.station-switcher-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.station-switcher-sheet {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 20px;
  max-height: 70vh;
  overflow-y: auto;
}
.station-switcher-title { font-weight: 900; font-size: 18px; margin-bottom: 14px; }
.station-switcher-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  cursor: pointer;
}
.station-switcher-item:active { background: var(--bg); }
.station-switcher-item.active { background: #fde3e3; }
.station-switcher-logo {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: #333 center/cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 18px;
  flex: 0 0 auto;
}
.station-switcher-name { font-weight: 800; font-size: 15px; }
.station-switcher-sub { font-size: 12px; color: var(--gray); }

/* ---------- OVERIG: afspeelgeschiedenis ---------- */
.day-filter-btn {
  border: 1px solid #ddd;
  background: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}
.day-filter-btn.active { background: var(--dark); color: #fff; border-color: var(--dark); }
.track-history-list { padding: 6px 20px 20px; display: flex; flex-direction: column; gap: 4px; }
.track-history-date-pill {
  font-weight: 800;
  font-size: 12.5px;
  color: var(--gray);
  margin: 14px 0 6px;
}
.track-history-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 4px;
}
.track-history-artwork {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: #ddd center/cover no-repeat;
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  color: #999;
  font-size: 16px;
}
.track-history-song { font-weight: 700; font-size: 14px; }
.track-history-artist { font-size: 12.5px; color: var(--gray); }
.track-history-time { margin-left: auto; font-size: 12px; color: #999; flex: 0 0 auto; }

/* ---------- CHAT (berichten) ---------- */
.chat-wrap { display: flex; flex-direction: column; }
.chat-thread {
  padding: 14px 16px 90px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 200px;
}
.chat-date-pill {
  align-self: center;
  background: #4a4a4a;
  color: #fff;
  font-weight: 800;
  font-size: 12.5px;
  padding: 6px 16px;
  border-radius: 999px;
  margin: 14px 0 10px;
}
.chat-row { display: flex; margin-bottom: 4px; }
.chat-row.mine { justify-content: flex-end; }
.chat-row.theirs { justify-content: flex-start; align-items: flex-end; gap: 8px; }

.chat-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex: 0 0 auto;
  overflow: hidden;
}
.chat-avatar img { width: 100%; height: 100%; object-fit: cover; }

.chat-bubble {
  max-width: 74%;
  padding: 14px 18px;
  border-radius: 20px;
  font-size: 15px;
  line-height: 1.35;
  position: relative;
}
.chat-bubble.mine {
  background: var(--red);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.chat-bubble.theirs {
  background: #fff;
  color: var(--dark);
  border: 1px solid #eee;
  border-bottom-left-radius: 4px;
}
.chat-bubble-name {
  color: var(--red);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 4px;
}
.chat-bubble-station {
  font-size: 11px;
  color: #999;
  margin-top: 4px;
}
.chat-bubble.mine .chat-bubble-station { color: rgba(255,255,255,0.75); }
.chat-timestamp {
  font-size: 11px;
  margin-top: 5px;
  text-align: right;
}
.chat-bubble.mine .chat-timestamp { color: rgba(255,255,255,0.75); }
.chat-bubble.theirs .chat-timestamp { color: #aaa; }
.chat-status-row {
  align-self: flex-end;
  font-size: 11px;
  color: #999;
  margin: -2px 4px 10px;
}

.chat-input-bar {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 64px;
  width: 100%;
  max-width: 480px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-top: 1px solid #eee;
  background: #fff;
}
.chat-input-icon {
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
  flex: 0 0 auto;
}
#chatBodyInput {
  flex: 1 1 auto;
  border: none;
  background: var(--bg);
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 14.5px;
  min-width: 0;
}
.chat-send-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--red);
  color: #fff;
  font-size: 16px;
  flex: 0 0 auto;
}
.chat-station-picker {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 116px;
  width: 100%;
  max-width: 480px;
  z-index: 20;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 12px 16px;
}
.chat-station-picker select {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

/* ---------- AUTH ---------- */
.auth-box { padding: 10px 20px; }
.auth-intro { color: var(--gray); font-size: 14px; }
.auth-tabs {
  display: flex;
  background: var(--bg);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 18px;
}
.auth-tab {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px;
  border-radius: 999px;
  font-weight: 800;
  color: var(--gray);
  cursor: pointer;
}
.auth-tab.active { background: var(--red); color: #fff; }

.auth-form { display: flex; flex-direction: column; gap: 12px; }
.auth-form input, .send-message-box select, .send-message-box textarea {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 14px;
  font-size: 15px;
  width: 100%;
  font-family: inherit;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  margin-top: 4px;
}
.btn-primary:active { background: var(--red-dark); }
.btn-secondary {
  background: #eee;
  color: var(--dark);
  border: none;
  border-radius: 999px;
  padding: 12px;
  font-weight: 700;
  cursor: pointer;
}
.form-error { color: var(--red); font-size: 13px; min-height: 16px; }
.form-success { color: #1a8a3d; font-size: 13px; min-height: 16px; }

/* ---------- MESSAGES (logged in) ---------- */
.who-am-i {
  padding: 10px 20px;
  font-size: 14px;
  color: var(--gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.link-btn {
  background: none;
  border: none;
  color: var(--red);
  font-weight: 700;
  cursor: pointer;
}
.send-message-box {
  padding: 6px 20px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.field-label {
  font-weight: 700;
  font-size: 13px;
  color: var(--gray);
  margin-top: 4px;
}
.messages-list { padding: 0 20px; display: flex; flex-direction: column; gap: 10px; }
.message-item {
  background: var(--bg);
  border-radius: 14px;
  padding: 12px 14px;
}
.message-item-top {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 4px;
}
.status-pill {
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: uppercase;
}
.status-nieuw { background: #fde3e3; color: var(--red); }
.status-gelezen { background: #fff3cd; color: #8a6d1a; }
.status-beantwoord { background: #d7f5df; color: #1a8a3d; }
.studio-reply {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #ddd;
  font-size: 13.5px;
}
.studio-reply-label {
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 3px;
}

/* ---------- NIEUWS ---------- */
.news-list { padding: 0 20px 6px; }
.news-featured {
  height: 200px;
  border-radius: var(--radius);
  background: #ddd center/cover no-repeat;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 12px;
}
.news-featured-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
}
.news-featured-title {
  color: #fff;
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1.15;
}
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.news-grid-card { cursor: pointer; }
.news-grid-photo {
  height: 110px;
  border-radius: 12px;
  background: #ddd center/cover no-repeat;
  margin-bottom: 6px;
}
.news-grid-title {
  font-weight: 800;
  font-size: 13.5px;
  line-height: 1.25;
}

/* ---------- POLLS ---------- */
.poll-card {
  margin: 18px 20px 0;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 18px;
}
.poll-question {
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 12px;
}
.poll-options { display: flex; flex-direction: column; gap: 8px; }
.poll-option {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  font-size: 14px;
}
.poll-option--choice {
  background: #fff;
  border: 1px solid #ddd;
  padding: 12px 14px;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
  color: var(--dark);
}
.poll-option--choice:active { background: #f0f0f0; }
.poll-option--result {
  background: #fff;
  border: 1px solid #eee;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
}
.poll-option-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: #fde3e3;
  z-index: 0;
  transition: width 0.3s ease;
}
.poll-option--mine .poll-option-bar { background: #f6b8ba; }
.poll-option-label, .poll-option-pct { position: relative; z-index: 1; }
.poll-total { margin-top: 10px; font-size: 12px; color: var(--gray); }

/* ---------- SHOWS (programma's) ---------- */
.shows-list {
  padding: 6px 20px 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.show-card {
  display: flex;
  gap: 14px;
  background: var(--bg);
  border-radius: 14px;
  padding: 12px;
  cursor: pointer;
  align-items: center;
}
.show-card-photo {
  width: 64px; height: 64px;
  border-radius: 10px;
  background: #ddd center/cover no-repeat;
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: #999;
}
.show-card-name { font-weight: 800; font-size: 15px; }
.show-card-desc {
  font-size: 12.5px;
  color: var(--gray);
  margin-top: 3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.show-detail-photo {
  height: 220px;
  background: #ddd center/cover no-repeat;
}
.show-detail-body { padding: 20px; }
.show-detail-body h2 { margin: 0 0 10px; font-size: 22px; }
.show-detail-desc { color: var(--gray); line-height: 1.5; font-size: 14.5px; }
.airtimes-list { display: flex; flex-direction: column; gap: 8px; }
.airtime-row {
  display: flex;
  justify-content: space-between;
  background: var(--bg);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13.5px;
}
.airtime-row .day { font-weight: 700; }
.airtime-row .station { color: var(--gray); }

/* ---------- MINI PLAYER ---------- */
.mini-player {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 78px;
  width: 100%;
  max-width: 440px;
  background: #1a1a1a;
  color: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.mini-player-eq {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
  flex: 0 0 auto;
  opacity: 0.35;
}
.mini-player-eq span {
  width: 3px;
  background: var(--red);
  border-radius: 2px;
  height: 4px;
  animation: none;
}
.mini-player.is-playing .mini-player-eq { opacity: 1; }
.mini-player.is-playing .mini-player-eq span {
  animation: eqBounce 1s ease-in-out infinite;
}
.mini-player.is-playing .mini-player-eq span:nth-child(1) { animation-delay: 0s; }
.mini-player.is-playing .mini-player-eq span:nth-child(2) { animation-delay: 0.15s; }
.mini-player.is-playing .mini-player-eq span:nth-child(3) { animation-delay: 0.3s; }
.mini-player.is-playing .mini-player-eq span:nth-child(4) { animation-delay: 0.45s; }
@keyframes eqBounce {
  0%, 100% { height: 4px; }
  50% { height: 18px; }
}
.mini-player-info { flex: 1 1 auto; min-width: 0; }
.mini-player-name {
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mini-player-sub {
  font-size: 12px;
  color: #bbb;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mini-player-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: none;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  flex: 0 0 auto;
}
.hidden { display: none !important; }
#app.chat-active #miniPlayer { display: none; }

/* ---------- BOTTOM NAV ---------- */
.bottom-nav {
  position: fixed;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-top: 1px solid #eee;
  display: flex;
  padding: 8px 0 14px;
}
.nav-btn {
  flex: 1;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 11px;
  font-weight: 800;
  color: var(--gray);
  letter-spacing: 0.5px;
  cursor: pointer;
}
.nav-btn.active { color: var(--red); }
.nav-icon { font-size: 20px; }

/* ---------- ADMIN ---------- */
/* Het dashboard is bewust NIET responsive: het moet er op elk scherm
   (ook een telefoon) uitzien als een desktop-pagina, met horizontaal
   scrollen indien nodig, in plaats van in te klappen naar een mobiele
   weergave. */
body.admin-page {
  display: block;
  min-width: 1200px;
  background: #f0f0f0;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
.admin-wrap {
  max-width: 1120px;
  min-width: 1120px;
  margin: 0 auto;
  padding: 24px;
  font-family: var(--font-app);
}
.login-screen { min-width: 360px; }
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.admin-header h1 {
  font-size: 22px;
  font-weight: 900;
  margin: 0;
}
.admin-tabs { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.admin-tab {
  border: none;
  background: var(--bg);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}
.admin-tab.active { background: var(--dark); color: #fff; }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}
.stat-card {
  background: var(--bg);
  border-radius: 14px;
  padding: 18px;
}
.stat-card .num { font-size: 28px; font-weight: 900; color: var(--red); }
.stat-card .label { font-size: 13px; color: var(--gray); margin-top: 4px; }

table.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
table.admin-table th, table.admin-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}
table.admin-table th { color: var(--gray); font-weight: 700; font-size: 12px; text-transform: uppercase; }
.admin-panel { display: none; }
.admin-panel.active { display: block; }
.mini-btn {
  border: none;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  margin-right: 4px;
}
.mini-btn--red { background: #fde3e3; color: var(--red); }
.mini-btn--green { background: #d7f5df; color: #1a8a3d; }
.mini-btn--gray { background: #eee; color: var(--dark); }
.station-form {
  background: var(--bg);
  padding: 18px;
  border-radius: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.station-form input { padding: 10px; border-radius: 8px; border: 1px solid #ddd; }
.station-form label { font-size: 12px; color: var(--gray); font-weight: 700; display: block; margin-bottom: 4px; }
.station-form .full { grid-column: 1 / -1; }
.login-screen {
  max-width: 360px;
  margin: 80px auto;
  padding: 30px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}
.img-preview {
  margin-top: 8px;
  width: 90px; height: 90px;
  border-radius: 10px;
  background: #eee center/cover no-repeat;
  display: none;
}
.img-preview.show { display: block; }
