:root {
  --green: #2f6f4e;
  --green-dark: #214f38;
  --cream: #f4f2ea;
  --card: #fffdf7;
  --border: #ddd6c9;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: #1f2937;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
}

.visit-btn {
  background: var(--green);
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 16px;
}

.card {
  background: var(--card);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

input {
  padding: 8px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.note {
  font-size: 13px;
  background: #eef3ec;
  padding: 10px;
  border-radius: 8px;
}

.actions {
  display: flex;
  gap: 12px;
  margin: 16px 0;
}

button {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: white;
}

button.primary {
  background: var(--green);
  color: white;
}

.accordion {
  width: 100%;
  text-align: left;
}

.panel {
  margin-top: 12px;
}

.winner {
  font-weight: 700;
  padding: 10px;
  background: #eef3ec;
  border-radius: 10px;
  margin-bottom: 12px;
}

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

th, td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

td strong {
  font-weight: 700;
}

.kit {
  text-align: center;
}
