/* Estilos generales */
.calendar {
  margin-top: 20px;
}

.week {
  display: flex;
  margin-bottom: 2px;
}

.day {
  text-align: right;
  flex-grow: 1;
  margin-right: 2px;
  font-size: 10px;
  background-color: #f4f4f4;
  min-height: 80px;
}

.current-month {
  text-align: center;
  flex-grow: 1;
  font-size: 26px;
  font-weight: bold;
}

.weekday {
    font-weight: bold;
    text-align: center;
    min-height: 30px !important;
    background-color: #ffffff;
    margin-right: 0px;

    padding-top: 5px;
    font-size: 14px;

}

.weekday-row {
  background-color: #f0f0f0;
  height: 30px;
}

.day.past {
  background-color: #ffeeee;
}

.day.current {
  background-color: #c3ffdc;
}

/* Estilos del título y navegación */
.title-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.current-month {
  text-align: center;
  flex-grow: 1;
}

#prev-month {
  left: 0;
}

#next-month {
  right: 0;
}

/* Estilos del botón de cierre del modal */
.close-modal-btn {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.close-modal-btn i {
  font-size: 24px;
}

.boton-modal-close{
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  cursor:pointer;
  filter: alpha(opacity = 20);
  font-size: 30px;
}

.month-nav{
  cursor:pointer;
  font-size: 30px;
}