/* Scoped CSS for the previousYears table using classes */
.previous-year table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 2px 6px rgb(0 0 0 / 10%);
}

.previous-year th,
.previous-year td {
  padding: 10px 12px;
  text-align: center;
  border: 1px solid #ddd;
}

.previous-year th {
  background-color: #2c3e50;
  color: #fff;
  font-weight: bold;
}

.previous-year tr:nth-child(even) {
  background-color: #f2f2f2;
}

.previous-year img {
  max-width: 120px;
  height: auto;
}

.previous-year a {
  color: #3498db;
  text-decoration: none;
}

.previous-year a:hover {
  text-decoration: underline;
}
