body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f9;
}
.container {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}
h1 {
  text-align: center;
  color: #333;
}
h5 {
  text-align: center;
  color: #333;
}
.game-card {
  border: 1px solid #ccc;
  background: white;
  padding: 15px;
  margin: 10px 0;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.game-card h3 {
  margin: 0 0 10px;
  color: #007bff;
}
.game-card p {
  margin: 5px 0;
}
.add-game {
  display: block;
  width: 100%;
  background: #007bff;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  text-align: center;
  font-size: 16px;
  margin-top: 20px;
}
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: white;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}
input, textarea, button {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
button {
  background: #28a745;
  color: white;
  cursor: pointer;
}
button:hover {
  background: #218838;
}
.delete-button {
  background: #dc3545;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 10px;
}
.vote-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.vote-section button {
  background-color: #17a2b8;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}
.vote-section button:hover {
  background-color: #138496;
}
.vote-section span {
  font-weight: bold;
  color: #007bff;
}
