body {
  font-family: sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #f4f4f4;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  width: 100%;
}

.logo-container {
  display: flex;
  justify-content: center;
  max-width: 800px;
}

h1, h2 {
  text-align: center;
  color: #555;
}

#player-list {
  margin-bottom: 20px;
}

#player-list ul {
  list-style: none;
  padding: 0;
}

#player-list li {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

#player-list input[type="checkbox"] {
  margin-right: 10px;
}

button {
  background-color: #5cb85c;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  margin: 20px auto;
  transition: background-color 0.3s ease;
}

.danger {
  background-color: #f44336;
}

.danger:hover {
  background-color: #a93931;
}

button[disabled] {
  cursor: not-allowed;
}

button:hover {
  background-color: #4cae4c;
}

.btn-group {
  display: flex;
  justify-content: center;
}

.group-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.group-table th, .group-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
}

.group-table th {
  background-color: #f0f0f0;
}

.match-pair {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.match-pair div{
  margin-left: 5px;
  margin-right: 5px;
}

.match-pair input[type="text"] {
  width: 50px;
  margin-left: 5px;
  text-align: center;
}
.match-group-container{
  margin-bottom: 20px;
}
.match-group-container h3{
  text-align: center;
}
#finish-tournament-btn{
  text-align:center;
}

.podium-logo {
  max-width: 600px;
}
