body {
  font-family: Inter, system-ui, sans-serif;
  margin: 0;
  padding: 0;
}

/* TABLE WRAPPER FOR SCROLL */
.table-container {
  overflow-x: auto;
  width: 100%;
}

/* TABLE */
table {
  border-collapse: collapse;
  width: 100%;
  min-width: 1000px; /* forces scroll on mobile */
  max-width: 1200px;
  margin: auto;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 3rem;
}

thead {
  background: linear-gradient(135deg, #0b3920, #1f6d39);
  color: #ffffff;
}

thead th {
  padding: 10px;
  font-weight: 600;
  text-align: center;
  border: 2px solid #2e5a47;
}

tbody td {
  padding: 8px;
  text-align: center;
  border: 2px solid #e0e0e0;
  font-size: 14px;
}

tbody tr:nth-child(even) {
  background: linear-gradient(135deg, #faf0e6, #f5f5dc);
}

/* Player name column */
tbody td:first-child {
  font-weight: bold;
  background: linear-gradient(135deg, #faf0e6, #f5f5dc);
}

.label {
  font-weight: 600;
  text-align: center;
  color: #1f3c2f;
}

/* Hover */
tbody td:hover {
  background-color: #e6f2ec;
  transition: 0.2s;
}

/* Rounded corners */
table thead tr:first-child th:first-child {
  border-top-left-radius: 8px;
}
table thead tr:first-child th:last-child {
  border-top-right-radius: 8px;
}

tbody tr:nth-child(2n):not(:last-child) {
  border-bottom: 3px solid #000;
}

.player-name {
  font-weight: bold;
  background-color: #eef5f1;
}

.highlight {
  font-weight: bold;
}

/* HEADER */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1rem;
  background: linear-gradient(135deg, #0b3920, #1f6d39);
  margin-bottom: 1rem;
  position: relative;
}

.logo {
  height: 140px;
  width: auto;
}

/* NAV */
.nav-content {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-content a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
}

.nav-content a:hover {
  opacity: 0.75;
}

/* HAMBURGER BUTTON */
.menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 25px;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

tbody td:first-child,
thead th:first-child {
  min-width: 120px;
}

.player-name a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.player-name a:hover {
  text-decoration: underline;
}

/* MOBILE STYLES */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-content {
    display: none;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    text-align: center;
    padding-bottom: 1rem;
  }

  .nav-content.active {
    display: flex;
  }

  .logo {
    height: 100px;
  }
  table {
  margin-left: 1rem;
  margin-right: 1rem;
}
}  