@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

* {
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* height: 100vh;
  overflow: hidden; */
  margin: 0;
}

.match {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.game {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.p {
  display: flex;
  align-items: center;
  gap: 10px;
}

select {
  appearance: none;
  -webkit-appearance: none; /* For older Webkit browsers */
  -moz-appearance: none; /* For older Firefox browsers */
}

select {
  /* ... (appearance: none and vendor prefixes as above) ... */
  background-color: #f2f2f2;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: #333;
  margin-top: 15px;
}

.selects {
  width: 90%;
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

thead {
  background-color: rgb(64, 134, 215); /* Dark background */
  color: white; /* White text color */
  text-align: center; /* Center align text */
  border-bottom: 2px solid rgb(160, 160, 160); /* Add a bottom border */
  font-size: 1.875rem;
}

table {
  border-collapse: collapse;
  border: 4px solid rgb(64, 134, 215);
}

th {
  padding: 20px;
}

td:last-child {
  padding-right: 20px; /* Adjust the value as needed */
}

table tr:last-child td {
  padding-bottom: 20px;
}

Button {
  background-color: rgb(64, 134, 215);
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
}

Button:hover {
  /* Hover state: a more pronounced shadow */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
}

Button:active {
  /* Move the button down 4px and to the right 4px */
  transform: translateY(4px) translateX(4px);

  /* Reduce the shadow to simulate it being pressed down */
  box-shadow: 0 2px #555;
}
