/* Ensure the footer sticks to the bottom */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

footer {
  flex-shrink: 0;
}

/* style*/
.hide {
  display: none;
}
.accordion-button {
  font-weight: bold;
  color: #007bff;
}
.accordion-button:not(.collapsed) {
  background-color: #007bff;
  color: white;
}
.year-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e9ecef;
  padding: 10px 0;
}
.year-row:last-child {
  border-bottom: none;
}
.year {
  font-weight: bold;
  color: #343a40;
}
.winner {
  font-size: 1.2rem;
  color: #007bff;
  font-weight: bold;
}
.card {
  transition: transform 0.2s ease-in-out;
}
.card:hover {
  transform: scale(1.05);
}
