/* Custom styles for the calendar */
table.table-bordered {
  border: 1px solid #dee2e6;
}

table th, table td {
  text-align: center;
  padding: 10px;
}

.clickable-day {
  cursor: pointer;
  background-color: #f8f9fa;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

  .clickable-day:hover {
    background-color: #007bff;
    color: white;
  }

button.btn-info {
  font-size: 12px;
  padding: 5px 10px;
  margin-top: 5px;
}
