.calendar-body {
  font-family: Arial, sans-serif;
}

.calendar {
  display: flex;
  flex-wrap: wrap;
}

.calendar-month {
  border: 1px solid #ccc;
  margin: 8px;
  padding: 8px;
  width: 300px;
}

.calendar-month-name {
  font-weight: bold;
  text-align: center;
  margin-bottom: 8px;
}

.calendar-table {
  width: 100%;
  border-collapse: collapse;
}

.calendar-table th,
.calendar-table td {
  width: 14%;
  height: 24px;
  text-align: center;
  border: 1px solid #eee;
}

.booking {
  background: #9da6a9; /* new booked color */
  border-radius: 4px;
}

.available {
  background: #fff;
  border-radius: 4px;
}

.calendar-legend {
  margin-bottom: 16px;
  font-size: 1em;
}

.calendar-legend-sample {
  display: inline-block;
  width: 24px;
  height: 24px; /* Match table cell height */
  vertical-align: middle;
  margin-right: 6px;
  border: 1px solid #888;
  box-sizing: border-box;
}
