/* Calendar navigation menu */
.calendar-header {
  padding: 15px 15px 5px 15px;
  border-width: 0px 0px 2px 0px;
  font-family: "Helvetica", Arial, Sans-Serif;
  font-size: 14pt;
  font-weight: bold;
  text-align: center;
}
.calendar-container {
  width: auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(6, 1fr);
  padding: 0px 15px 15px 15px;
  gap: 2px;
}
.calendar-item {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  font-weight: bold;
  color: black;
  background-color: white;
}
.calendar-date {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  font-weight: bold;
  color: black;
  background-color: white;
}
.calendar-date:hover {
  color: black;
  background-color: gold;
}
.calendar-link {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  font-weight: bold;
}
.calendar-link:hover {
  color: black;
  background-color: gold;
}