.calendar {
  width: 500px;
}

.week,
.day {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5em;
}

.current-date {
  background-color: #ccc;
}
