#calendar {
  /* max-width: 1200px; */
  min-width: 100%;
}
/*
#calendar {
  max-width: 900px;
  margin: 40px auto;
}

#calendar a.fc-event {
  color: #fff; //los estilos predeterminados de bootstrap lo hacen negro. deshacer  
}
*/
.nocheckbox {
  display: none;
}

.label-on {
  border-radius: 3px;
  background: red;
  color: #ffffff;
  padding: 10px;
  border: 1px solid red;
  display: table-cell;
}

.label-off {
  border-radius: 3px;
  background: white;
  border: 1px solid red;
  padding: 10px;
  display: table-cell;
}

#calendar a.fc-event {
  color: #222; /* bootstrap default styles make it black. undo */
  background-color: #0065a6;
}
@media (min-width: 282px) and (max-width: 602px) {
  .fc-toolbar .fc-right {
    display: flex;
    float: left;
    flex-wrap: wrap;
    justify-content: space-around;
    font-size: 12px;
    margin: 5px 0px;
  }
  .fc-center h2 {
    font-size: 20px;
  }
  .fc td,
  .fc th {
    font-size: 10px;
  }
}

.fc-past {
  pointer-events: none; /* Deshabilita los eventos del mouse en el día */
  opacity: 0.5; /* Hace el día semi-transparente */
}
table thead tr {
  color: #222;
}

.hidden-day {
  display: none;
}
.disabled {
  background-color: #f2f2f2; /* Color de fondo para fechas deshabilitadas */
  color: #999999; /* Color de texto para fechas deshabilitadas */
  cursor: not-allowed; /* Cambiar el cursor para indicar que la fecha está deshabilitada */
}
