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;
}
