:root {
  --fc-border-color: #ddd;
  --fc-button-bg-color: #cc0000;
  --fc-button-border-color: #ca0000;
  --fc-button-hover-bg-color: #ee0000;
  --fc-button-hover-border-color: #cc0000;
  --fc-button-text-color: white;
  --fc-day-color: white;
  --fc-daygrid-event-dot-width: 5px;
  --fc-more-link-bg-color: #550000;
  --fc-more-link-text-color: inherit;
  --fc-today-bg-color: #ffcc00;
  --fc-daygrid-day-number: black;
  --fc-event-bg-color: #3788d8;
  --fc-event-border-color: #3788d8;
  --fc-event-text-color: #fff;
  --fc-event-selected-overlay-color: rgba(0, 0, 0, 0.25);

}

/* Day number link (the number itself) */
.fc .fc-daygrid-day-number {
    color: inherit !important;
    text-decoration: none !important;
    font-weight: normal !important;
    border-bottom-style: none !important;
}

.fc .fc-col-header-cell-cushion {
    color: black !important;
    text-decoration: none !important;
    font-weight: normal !important;
    border-bottom-style: none !important;
}

/* Remove hover underline if your site theme adds it */
.fc .fc-daygrid-day-number:hover {
    text-decoration: none !important;
}

.fc .grading-event,
.fc .grading-event a {
  color: #000000 !important;
}

.modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.modal-content {
  position: relative;
  background: #fff;
  color: #000;
  border-radius: 8px;
  max-width: 400px;
  width: 100%;
  padding: 1rem 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.modal-content h2 {
    color: #000;
}
.modal-close {
  position: absolute;
  color: #000;
  top: 0.5rem; right: 0.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.modal-close:hover {
    color: #999;
    background: none;
}
