body {
  font-family: sans-serif;
  padding: 20px;
  max-width: 800px;
  margin: auto;
  background-color: #fdfdfd;
}

h1, h2 {
  text-align: center;
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.button {
  padding: 15px 30px;
  background-color: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th, td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}

@media (max-width: 600px) {
  .button {
    padding: 10px 20px;
  }

  th, td {
    font-size: 12px;
    padding: 8px;
  }
}


.button-tournaments {
  background-color: #2ecc71; /* green */
}


.button-wednesday {
  background-color: #e67e22; /* orange */
}


.button-monday {
  background-color: #2980b9; /* blue */
}

.button:active {
  transform: scale(0.96);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) inset;
}
.button-friday {
  background-color: #e74c3c;
}

.button-friday:hover {
  background-color: #c0392b;
}

.button-tournaments:hover {
  background-color: #27ae60;
}

.button-wednesday:hover {
  background-color: #ca6f1e;
}

.button-monday:hover {
  background-color: #2471a3;
}

.button-subtext {
  font-size: 0.85em;
  display: block;
  margin-top: 4px;
  opacity: 0.9;
}

.tournament-button-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}


.button-register {
  background-color: #9b59b6; /* Purple */
}

.button-register:hover {
  background-color: #8e44ad;
}

.register-button-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.button {
  width: 100%;
  max-width: 160px;
  text-align: center;
  box-sizing: border-box;
}
.button-group,
.tournament-button-wrapper {
  flex-wrap: wrap;
  gap: 15px;
}
