:root {
  /* Overridden per-club inline in base.html — these are just a neutral
     fallback for pages that somehow render with no club resolved. */
  --club-primary: #0059A0;
  --club-secondary: #0C3C60;
}

body {
  font-family: system-ui, sans-serif;
  max-width: 640px;
  margin: 0 auto;
  padding: 1rem;
  line-height: 1.5;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  border-bottom: 3px solid var(--club-primary);
  padding-bottom: 0.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--club-secondary);
  text-decoration: none;
}

.club-logo {
  height: 32px;
  width: auto;
}

nav a {
  margin-left: 1rem;
  color: var(--club-secondary);
}

a {
  color: var(--club-primary);
}

button, input[type="submit"] {
  background: var(--club-primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.flashes {
  list-style: none;
  padding: 0;
}

.flash-error {
  color: #b00020;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  text-align: left;
  padding: 0.25rem 0.5rem;
  border-bottom: 1px solid #ddd;
}

th {
  color: var(--club-secondary);
}
