/* Minimal styling for table-based calendar */

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1em;
}
.calendar-header .nav-btn {
  background-color: #ccc;
  border: none;
  padding: 6px 10px;
  margin: 0 10px;
  cursor: pointer;
  border-radius: 4px;
}
.calendar-header h2 {
  margin: 0;
  font-size: 1.2em;
}

.calendar-table {
  border-collapse: collapse;
  margin-bottom: 10px;
}
.calendar-table th,
.calendar-table td {
  width: 40px;
  height: 40px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #ccc;
  cursor: pointer;
}
.calendar-table th {
  background-color: #fff;
}
.calendar-table td.inactive {
  background-color: #f9f9f9;
  color: #aaa;
  cursor: default;
}
.calendar-table td.available {
  background-color: #fff;
}
.calendar-table td.unavailable {
  background-color: #f0f0f0;
  color: #e3e3e3;
  cursor: default;
}
.calendar-table td.selected {
  background-color: #2196f3 !important;
  color: white !important;
}
