#calendar-left,
#calendar-right {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.calendar-day {
  padding: 8px;
  border-radius: 6px;
  font-size: 13px;
}

.calendar-day.weekday {
  font-weight: 600;
  background: none;
}

.calendar-day.free {
  background: #2ecc71;
  color: #fff;
  cursor: pointer;
}

.calendar-day.busy {
  background: #e74c3c;
  color: #fff;
}

.amelie-calendar-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}
