/* Loser Pool — Custom Styles */

:root {
  --lp-gold: #f5a623;
  --lp-dark: #1a1a2e;
  --lp-green: #16a34a;
}

body {
  background-color: #f8f9fa;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Navbar */
.navbar-brand {
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

/* Cards */
.card {
  border-radius: 0.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.card-header {
  font-weight: 600;
}

/* Team picker grid */
.team-btn {
  font-size: 0.8rem;
  padding: 0.4rem 0.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 48px;
}

.team-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Status badges */
.badge {
  font-size: 0.75rem;
  font-weight: 600;
}

/* Table tweaks */
.table > :not(caption) > * > * {
  vertical-align: middle;
}

/* Admin action buttons - extra small */
.btn-xs {
  padding: 0.15rem 0.4rem;
  font-size: 0.75rem;
  border-radius: 0.2rem;
}

/* Standings: highlight current user row */
.table-warning {
  --bs-table-bg: #fff8e1;
}

/* Footer */
footer {
  font-size: 0.85rem;
}

footer a:hover {
  color: var(--lp-gold) !important;
  text-decoration: underline;
}

/* Helmet logos */
.helmet-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.helmet-logo-sm {
  width: 24px;
  height: 24px;
  object-fit: contain;
  vertical-align: middle;
}

/* Score box in matchup cards */
.score-box {
  font-size: 1.5rem;
  font-weight: 700;
  min-width: 2.5rem;
  text-align: right;
}

/* Matchup card */
.matchup-card {
  transition: box-shadow 0.15s;
}
.matchup-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* Matchup pills on pick page */
.matchup-pill {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 20px;
  padding: 3px 8px;
  font-size: 0.78rem;
}

/* Responsive pick grid: 3 cols on md, 2 on mobile */
@media (max-width: 576px) {
  .team-btn {
    font-size: 0.72rem;
    min-height: 44px;
  }
  .helmet-logo {
    width: 36px;
    height: 36px;
  }
}
