.mvp-winners-container {
  max-width: 1600px;
  margin: 0 auto;
  width: 80%;
  padding: 80px 0;
  margin-bottom: 50px;
}

.mvp-winners-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: bold;
}

.winners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 30px;
  row-gap: 120px;
  margin-bottom: 30px;
  margin-top: 80px;
}

.winner-card {
  background-color: #eaeff2;
  border-radius: 48px;

  filter: drop-shadow(7px 14px 24px rgba(0, 0, 0, 0.04));
  position: relative;
  transition: transform 0.3s ease;
}

.winner-card:hover {
  transform: translateY(-5px);
}

.winner-year-badge {
  margin: auto;
  max-width: max-content;
  background-color: #153749;
  color: white;
  padding: 8px 30px;
  font-size: 22px;
  border-radius: 50px;
  font-weight: 700;
  z-index: 2;
  margin-top: -15px;
  margin-bottom: 30px;
}

.winner-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  border-radius: 100px;
  max-width: 130px;
  max-height: 130px;
  margin: 20px auto;
}

.winner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.winner-details {
  padding: 20px;
  text-align: center;
}

.winner-name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #153749;
}

.winner-team {
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-bottom: -40px; */
  background: #fff;
  max-width: max-content;
  padding: 10px 40px;
  margin-left: auto;
  margin-right: auto;
  filter: drop-shadow(7px 14px 24px rgba(0, 0, 0, 0.04));
  border-radius: 50px;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -25px;
}

.team-flag {
  width: 30px;
  height: auto;
  margin-right: 10px;
}

.team-name {
  font-weight: 700;
  font-size: 18px;
}

.winner-description {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  max-width: 400px;
  margin: auto;
  margin-bottom: 30px;
}

.load-more-container {
  text-align: center;
  margin: 20px 0;
}

.load-more-button {
  background-color: #153749;
  color: white;
  border: none;
  font-size: 14px;
  padding: 15px 30px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin: auto;
  margin-top: 100px;
}

.load-more-button:hover {
  background-color: #1a4555;
}

.winner-card.hidden {
  display: none;
}

.admin-edit-container {
  text-align: right;
  margin-bottom: 20px;
}

.admin-edit-button {
  display: block;
  max-width: max-content;
  margin: auto;
  margin-bottom: 80px;
  background-color: #1a3a5f;
  color: white;
  padding: 8px 15px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.admin-edit-button:hover {
  background-color: #0f2a4f;
}

.no-winners {
  text-align: center;
  font-style: italic;
  color: #666;
}

.mvp-winners-edit-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 20px;
}

.back-button-container {
  margin-bottom: 20px;
}

.back-button {
  display: inline-block;
  background-color: #f0f0f0;
  color: #333;
  padding: 8px 15px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.back-button:hover {
  background-color: #e0e0e0;
}

/* Team colors */
span.team-name[data-team="IRISH"] {
  color: #089247;
}

span.team-name[data-team="WORLD"] {
  color: #1a428a;
}

span.team-name[data-team="ITALIAN"] {
  color: #cf2b37;
}

/* Responsive styles */
@media (max-width: 768px) {
  .winners-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 480px) {
  .winners-grid {
    grid-template-columns: 1fr;
  }

  .mvp-winners-container {
    width: 90%;
  }
}
