body {
  font-family: "Arial", sans-serif;
  background-color: #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}
.container {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 80%;
  max-width: 600px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
th,
td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: center;
}
th {
  background-color: #007bff;
  color: white;
}
.player-form {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.player-form input,
.player-form button {
  padding: 10px;
  margin: 5px;
}
.player-form button {
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.player-form button:hover {
  background-color: #0056b3;
}
.medal {
  font-size: 1.5em;
}
button i {
  margin-right: 5px;
}
