/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f5f5f5;
  color: #222;
}

/* TOP BAR */
.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px 20px;
  background: #1e1e1e;
  color: white;
}

/* LOGO */
.logo {
  font-weight: bold;
  font-size: 18px;
}

/* TABS */
.tabs {
  display: flex;
  gap: 10px;
}

.tabs button {
  background: #333;
  border: none;
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
}

.tabs button:hover {
  background: #555;
}

/* ADMIN */
.admin-area {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.admin-area button {
  background: #007bff;
  border: none;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
}

.admin-area button:hover {
  background: #0056b3;
}

/* CONTENT */
.content {
  max-width: 900px;
  margin: 20px auto;
  padding: 0 15px;
}

/* SECTIONS */
section h2 {
  margin-bottom: 15px;
}

/* SUNDAY CARD */
.sunday-card {
  background: white;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.sunday-card input {
  padding: 6px;
  margin-right: 5px;
}

.sunday-card button {
  padding: 6px 10px;
  border: none;
  border-radius: 6px;
  background: #28a745;
  color: white;
  cursor: pointer;
}

.sunday-card button:hover {
  background: #218838;
}

/* TOURNAMENT */
.group {
  background: white;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.match {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}

/* HISTORY */
#history p {
  background: white;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}
