body {
  background-color: #EFEFEF;
}
button {
  user-select: none;
}
.required-field {
  margin-left: 5px;
  color: #ea1c24;
}

#warningModalLabel {
  color: #ea1c24;
  font-weight: bold;
}

@media (max-width: 768px) {
  .divLabelContact {
    display: flex;
    flex-direction: column;
  }
  .contact-alert {
    margin-bottom: 10px;
    color: #ea1c24;
  }
  .divGeneral {
    display: block;
    margin: 20px;
  }
  .pasosReserva {
    font-size: 12px;
    background-color: #ffffff;
    border: 0;
    border-radius: 10px;
    padding: 15px;
    width: 100%;
    text-align: center;
    height: fit-content;
    margin-bottom: 5px;
  }
  .formReserva {
    font-size: 12px;
    background-color: #ffffff;
    border: 0;
    border-radius: 10px;
    padding: 40px;
    width: 100%;
    border-bottom: 2px solid #000000;
  }
  #formReserva {
    display: none;
  }
  label {
    margin-bottom: 10px;
    font-weight: bold;
  }
  input,
  select option {
    margin-bottom: 30px;
    color: #a1a1a1;
    border: 1px solid #000000;
    border-radius: 10px;
    background-color: #ffffff;
    font-size: 10px;
    height: 25px;
    user-select: none;
  }
  .labelInputChoices {
    margin-top: 30px;
  }
  .navButtons {
    display: flex;
    justify-content: space-between;
  }
  .nextBtnDiv {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
  }
  #nextBtn {
    background-color: #ea1c24;
    color: white;
    border: 1px solid #ea1c24;
    border-radius: 20px;
    padding: 10px 10px;
    cursor: pointer;
    text-align: center;
    width: fit-content;
  }
  #nextBtn:hover {
    background-color: #ffffff;
    color: #ea1c24;
    border: 1px solid #ea1c24;
    transition: background 0.3s;
  }
  .prevBtnDiv {
    display: flex;
    justify-content: flex-start;
    margin-top: 30px;
  }
  #prevBtn {
    background-color: #ffffff;
    color: #ea1c24;
    border: 1px solid #ea1c24;
    border-radius: 20px;
    padding: 10px 10px;
    cursor: pointer;
    text-align: center;
    width: fit-content;
  }
  #prevBtn:hover {
    background-color: #ea1c24;
    color: #ffffff;
    border: 1px solid #ea1c24;
    transition: background 0.3s;
  }

  #ghostBtn {
    display: none;
  }

  .widthContainerButtons {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .monthBtn {
    background-color: #ffffff;
    color: #ea1c24;
    border: 1px solid #ea1c24;
    border-radius: 20px;
    padding: 5px;
    margin: 10px 5px 20px 5px;
    cursor: pointer;
    text-align: center;
    width: fit-content;
  }
  .selected {
    color: #ea1c24;
    font-weight: bold;
  }
  .unselected {
    color: #6c757d;
  }
  .completed {
    color: #cccccc;
  }
  #seleccionLabSection {
    display: flex;
    flex-direction: column;
  }
  #credencialesEmpSection {
    display: none;
    flex-direction: column;
  }
  #policySection {
    display: none;
    flex-direction: column;
  }
  #finalizarResSection {
    display: none;
    flex-direction: column;
  }
  .tituloSeccion {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
  }

  .subTituloSeccion {
    color: #ea1c24;
    font-size: 14px;
    margin-top: 30px;
    font-weight: bold;
  }

  #inputDate-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .calendars-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    user-select: none;
  }
  .row-calendars {
    display: flex;
    justify-content: center;
  }
  .calendar-widget {
    width: 260px; /* Reducido el ancho del calendario */
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }

  .calendar-header {
    display: flex;
    justify-content: center; /* Centrar el mes y el año */
    align-items: center;
    background: #ea1c24;
    color: white;
    padding: 5px; /* Reducido el padding */
  }

  .calendar-header .month-year {
    font-weight: bold;
    font-size: 1em; /* Reducido el tamaño de fuente */
  }

  .calendar-body {
    padding: 10px;
  }

  .day-names,
  .days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
  }

  .day-names {
    margin-bottom: 10px;
    color: #666;
    font-weight: bold;
  }

  .day-names div {
    font-size: 0.8em; /* Reducido el tamaño de fuente de los nombres de los días */
  }

  .days-grid div.unselect {
    padding: 5px; /* Reducido el padding */
    margin: 1px; /* Reducido el margen */
    font-size: 0.9em; /* Reducido el tamaño de fuente */
    background: #a0ff8e;
    border: 1px solid #20c300;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
  }

  .days-grid div.unselect:hover {
    background: #ea1c24;
    border: 1px solid #ea1c24;
    color: white;
  }
  .days-grid div.unselect.mid {
    background: #f16d73;
    border: 1px solid #ea1c24;
    color: white;
  }
  .days-grid div.unselect.selected {
    background: #ea1c24;
    border: 1px solid #ea1c24;
    color: white;
  }
  .days-grid div.unavailable {
    background: #777777;
    border: 1px solid #777777;
    color: white;
  }

  /* Estilo para ocultar el popup por defecto */
  .popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    padding: 20px;
    background-color: #ea1c24;
    color: #ffffff;
    border: 1px solid #888;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    text-align: center;
  }

  /* Contenido del popup */
  .popup-content {
    position: relative;
    padding: 20px;
  }

  /* Botón de cerrar (X) */
  .close-btn {
    position: absolute;
    top: -5px;
    right: 10px;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
  }

  .close-btn:hover {
    color: #000;
  }

  #apartadoPods {
    display: none;
  }

  #apartadoAlumnos {
    display: none;
  }

  #apartadoFechas {
    display: none;
  }

  #apartadoSchedule {
    display: none;
  }

  .scheduleContainer {
    display: flex;
    align-items: center;
  }

  .dividerHour {
    margin-top: 75px;
    margin-right: 10px;
    margin-left: 10px;
  }

  .confirm_param_gray {
    padding: 10px;
    background-color: #e3e2e3;
  }

  .confirm_param_white {
    padding: 10px;
    background-color: #ffffff;
  }

  .confirmContainer {
    display: flex;
    flex-direction: column;
  }

  .subtituloConfirm {
    color: #ffffff;
    background-color: #ea1c24;
    font-size: 14px;
    margin-top: 30px;
    margin-bottom: 0px;
    font-weight: bold;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .confirmContainerLab {
    width: 100%;
  }

  .confirmContainerEmp {
    width: 100%
  }

  #confirmComentariosSection {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 30px;
    color: #000000;
    margin: auto;
  }
  #confirmComentariosSection div {
    padding: 10px;
  }
  .confirmSectionText {
    margin-top: 40px;
    font-size: 10px;
    line-height: 30px;
    color: #6c757d;
  }
  .error {
    border: 1px solid #ea1c24;
    background-color: #f16d73;
    color: #ffffff;
    padding: 5px;
    margin-top: -24px;
    font-size: 10px;

    /* Transiciones */
    max-height: 0; /* Inicialmente colapsado */
    opacity: 0; /* Inicialmente invisible */
    overflow: hidden; /* Para ocultar el contenido que no se muestra */
    transition: max-height 0.5s ease, opacity 0.5s ease; /* Transición de max-height y opacity */
  }

  .error.show {
    max-height: fit-content; /* Altura máxima cuando está visible (ajusta según el contenido) */
    opacity: 1; /* Totalmente visible */
  }

  .policyContainer {
    display: flex;
    flex-direction: column;
    margin: 20px auto;
    width: 100%;
    line-height: 30px;
    font-size: 10px;
  }

  .policyContainer ul {
    padding-left: 5px;
  }

  .policyContainer h3 {
    font-size: 14px;
    font-weight: bold;
    color: #ea1c24;
    line-height: 1.4rem;
  }

  #termsContainer {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  #termsContainer label {
    margin-left: 8px; /* Espacio entre el checkbox y la etiqueta */
    font-size: 10px;
    color: #6c757d;
    font-weight: lighter;
    margin-bottom: 0px;
    user-select: none;
  }

  #termsContainer input[type="radio"] {
    margin: 0px;
  }

  .checkbox-wrapper {
    display: flex;
    align-items: center;
    margin: 0 5px;
  }

  .btn-red {
    background-color: #ea1c24;
    color: #ffffff;
    font-size: 16px;
  }
  .btn-red:hover {
    background-color: #ffffff;
    color: #ea1c24;
    border: 1px solid #ea1c24;
    transition: background 0.3s;
  }

  .contenedor_carga {
    display: flex;
  }
}

@media (min-width: 768px) and (max-width: 1190px) {
  .divLabelContact {
    display: flex;
    flex-direction: column;
  }
  .contact-alert {
    margin-bottom: 10px;
    color: #ea1c24;
  }
  .divGeneral {
    display: block;
    margin: 40px;
  }
  .pasosReserva {
    font-size: 12px;
    background-color: #ffffff;
    border: 0;
    border-radius: 10px;
    padding: 15px;
    width: 100%;
    text-align: center;
    height: fit-content;
    margin-bottom: 5px;
  }
  .formReserva {
    font-size: 12px;
    background-color: #ffffff;
    border: 0;
    border-radius: 10px;
    padding: 40px;
    width: 100%;
    border-bottom: 2px solid #000000;
  }
  #formReserva {
    display: none;
  }
  label {
    margin-bottom: 10px;
    font-weight: bold;
  }
  input,
  select {
    margin-bottom: 30px;
    color: #a1a1a1;
    border: 1px solid #000000;
    border-radius: 10px;
    background-color: #ffffff;
    font-size: 10px;
    height: 25px;
    user-select: none;
  }
  .labelInputChoices {
    margin-top: 30px;
  }
  .navButtons {
    display: flex;
    justify-content: space-between;
  }
  .nextBtnDiv {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
  }
  #nextBtn {
    background-color: #ea1c24;
    color: white;
    border: 1px solid #ea1c24;
    border-radius: 20px;
    padding: 10px 10px;
    cursor: pointer;
    text-align: center;
    width: fit-content;
  }
  #nextBtn:hover {
    background-color: #ffffff;
    color: #ea1c24;
    border: 1px solid #ea1c24;
    transition: background 0.3s;
  }
  .prevBtnDiv {
    display: flex;
    justify-content: flex-start;
    margin-top: 30px;
  }
  #prevBtn {
    background-color: #ffffff;
    color: #ea1c24;
    border: 1px solid #ea1c24;
    border-radius: 20px;
    padding: 10px 10px;
    cursor: pointer;
    text-align: center;
    width: fit-content;
  }
  #prevBtn:hover {
    background-color: #ea1c24;
    color: #ffffff;
    border: 1px solid #ea1c24;
    transition: background 0.3s;
  }

  #ghostBtn {
    display: none;
  }

  .widthContainerButtons {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .monthBtn {
    background-color: #ffffff;
    color: #ea1c24;
    border: 1px solid #ea1c24;
    border-radius: 20px;
    padding: 5px 10px;
    margin: 10px 10px 20px 10px;
    cursor: pointer;
    text-align: center;
    width: fit-content;
  }
  .selected {
    color: #ea1c24;
    font-weight: bold;
  }
  .unselected {
    color: #6c757d;
  }
  .completed {
    color: #cccccc;
  }
  #seleccionLabSection {
    display: flex;
    flex-direction: column;
  }
  #credencialesEmpSection {
    display: none;
    flex-direction: column;
  }
  #policySection {
    display: none;
    flex-direction: column;
  }
  #finalizarResSection {
    display: none;
    flex-direction: column;
  }
  .tituloSeccion {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
  }

  .subTituloSeccion {
    color: #ea1c24;
    font-size: 16px;
    margin-top: 30px;
    font-weight: bold;
  }

  #inputDate-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .calendars-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    user-select: none;
  }
  .row-calendars {
    display: flex;
    justify-content: center;
  }
  .calendar-widget {
    width: 260px; /* Reducido el ancho del calendario */
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }

  .calendar-header {
    display: flex;
    justify-content: center; /* Centrar el mes y el año */
    align-items: center;
    background: #ea1c24;
    color: white;
    padding: 5px; /* Reducido el padding */
  }

  .calendar-header .month-year {
    font-weight: bold;
    font-size: 1em; /* Reducido el tamaño de fuente */
  }

  .calendar-body {
    padding: 10px;
  }

  .day-names,
  .days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
  }

  .day-names {
    margin-bottom: 10px;
    color: #666;
    font-weight: bold;
  }

  .day-names div {
    font-size: 0.8em; /* Reducido el tamaño de fuente de los nombres de los días */
  }

  .days-grid div.unselect {
    padding: 5px; /* Reducido el padding */
    margin: 1px; /* Reducido el margen */
    font-size: 0.9em; /* Reducido el tamaño de fuente */
    background: #a0ff8e;
    border: 1px solid #20c300;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
  }

  .days-grid div.unselect:hover {
    background: #ea1c24;
    border: 1px solid #ea1c24;
    color: white;
  }
  .days-grid div.unselect.mid {
    background: #f16d73;
    border: 1px solid #ea1c24;
    color: white;
  }
  .days-grid div.unselect.selected {
    background: #ea1c24;
    border: 1px solid #ea1c24;
    color: white;
  }
  .days-grid div.unavailable {
    background: #777777;
    border: 1px solid #777777;
    color: white;
  }

  /* Estilo para ocultar el popup por defecto */
  .popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    padding: 20px;
    background-color: #ea1c24;
    color: #ffffff;
    border: 1px solid #888;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    text-align: center;
  }

  /* Contenido del popup */
  .popup-content {
    position: relative;
    padding: 20px;
  }

  /* Botón de cerrar (X) */
  .close-btn {
    position: absolute;
    top: -5px;
    right: 10px;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
  }

  .close-btn:hover {
    color: #000;
  }

  #apartadoPods {
    display: none;
  }

  #apartadoAlumnos {
    display: none;
  }

  #apartadoFechas {
    display: none;
  }

  #apartadoSchedule {
    display: none;
  }

  .scheduleContainer {
    display: flex;
    align-items: center;
  }

  .dividerHour {
    margin-top: 70px;
    margin-right: 40px;
    margin-left: 40px;
  }

  .confirm_param_gray {
    padding: 10px;
    background-color: #e3e2e3;
  }

  .confirm_param_white {
    padding: 10px;
    background-color: #ffffff;
  }

  .confirmContainer {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    width: 100%;
  }

  .subtituloConfirm {
    color: #ffffff;
    background-color: #ea1c24;
    font-size: 16px;
    margin-top: 30px;
    margin-bottom: 0px;
    font-weight: bold;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .confirmContainerLab {
    margin-left: 50px;
    width: 40%;
  }

  .confirmContainerEmp {
    margin-right: 50px;
    width: 40%;
  }

  #confirmComentariosSection {
    display: flex;
    flex-direction: column;
    color: #000000;
    margin: 0 50px;
  }
  #confirmComentariosSection div {
    padding: 10px;
  }
  .confirmSectionText {
    margin-top: 40px;
    font-size: 10px;
    line-height: 30px;
    color: #6c757d;
  }
  .error {
    border: 1px solid #ea1c24;
    background-color: #f16d73;
    color: #ffffff;
    padding: 5px;
    margin-top: -24px;
    font-size: 10px;

    /* Transiciones */
    max-height: 0; /* Inicialmente colapsado */
    opacity: 0; /* Inicialmente invisible */
    overflow: hidden; /* Para ocultar el contenido que no se muestra */
    transition: max-height 0.5s ease, opacity 0.5s ease; /* Transición de max-height y opacity */
  }

  .error.show {
    max-height: fit-content; /* Altura máxima cuando está visible (ajusta según el contenido) */
    opacity: 1; /* Totalmente visible */
  }

  .policyContainer {
    display: flex;
    flex-direction: column;
    margin: 20px auto;
    width: 80%;
    line-height: 30px;
  }

  .policyContainer h3 {
    font-size: 16px;
    font-weight: bold;
    color: #ea1c24;
  }

  #termsContainer {
    margin-top: 70px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }

  #termsContainer label {
    margin-left: 8px; /* Espacio entre el checkbox y la etiqueta */
    font-size: 14px;
    color: #6c757d;
    font-weight: lighter;
    margin-bottom: 0px;
    user-select: none;
  }

  #termsContainer input[type="radio"] {
    margin: 0px;
    width: 16px;
  }

  .checkbox-wrapper {
    display: flex;
    align-items: center;
    margin: 0 55px;
  }

  .btn-red {
    background-color: #ea1c24;
    color: #ffffff;
    font-size: 16px;
  }
  .btn-red:hover {
    background-color: #ffffff;
    color: #ea1c24;
    border: 1px solid #ea1c24;
    transition: background 0.3s;
  }

  .contenedor_carga {
    display: flex;
  }
}

@media (min-width: 1191px) {
  .divLabelContact {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .contact-alert {
    color: #ea1c24;
    margin-left: 10px;
    margin-top: 20px;
  }
  .divGeneral {
    display: flex;
    margin: 80px;
  }
  .pasosReserva {
    font-size: 12px;
    background-color: #ffffff;
    border: 0;
    border-radius: 10px;
    padding: 15px;
    width: fit-content;
    text-align: center;
    height: fit-content;
    margin-right: 5px;
  }
  .formReserva {
    font-size: 12px;
    background-color: #ffffff;
    border: 0;
    border-radius: 10px;
    padding: 40px;
    width: 100%;
  }
  #formReserva {
    display: none;
  }
  label {
    margin-bottom: 10px;
    font-weight: bold;
  }
  input,
  select {
    margin-bottom: 30px;
    color: #a1a1a1;
    border: 1px solid #000000;
    border-radius: 10px;
    background-color: #ffffff;
    font-size: 10px;
    height: 25px;
    user-select: none;
  }
  .labelInputChoices {
    margin-top: 30px;
  }
  .navButtons {
    display: flex;
    justify-content: space-between;
  }
  .nextBtnDiv {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
  }
  #nextBtn {
    background-color: #ea1c24;
    color: white;
    border: 1px solid #ea1c24;
    border-radius: 20px;
    padding: 10px 10px;
    cursor: pointer;
    text-align: center;
    width: fit-content;
  }
  #nextBtn:hover {
    background-color: #ffffff;
    color: #ea1c24;
    border: 1px solid #ea1c24;
    transition: background 0.3s;
  }
  .prevBtnDiv {
    display: flex;
    justify-content: flex-start;
    margin-top: 30px;
  }
  #prevBtn {
    background-color: #ffffff;
    color: #ea1c24;
    border: 1px solid #ea1c24;
    border-radius: 20px;
    padding: 10px 10px;
    cursor: pointer;
    text-align: center;
    width: fit-content;
  }
  #prevBtn:hover {
    background-color: #ea1c24;
    color: #ffffff;
    border: 1px solid #ea1c24;
    transition: background 0.3s;
  }

  #ghostBtn {
    display: none;
  }

  .widthContainerButtons {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .monthBtn {
    background-color: #ea1c24;
    color: white;
    border: 1px solid #ea1c24;
    border-radius: 20px;
    padding: 5px 10px;
    margin: 10px;
    cursor: pointer;
    text-align: center;
    width: fit-content;
  }
  .monthBtn:hover {
    background-color: #ffffff;
    color: #ea1c24;
    border: 1px solid #ea1c24;
    transition: background 0.3s;
  }
  .selected {
    color: #ea1c24;
    font-weight: bold;
  }
  .unselected {
    color: #6c757d;
  }
  .completed {
    color: #cccccc;
  }
  #seleccionLabSection {
    display: flex;
    flex-direction: column;
  }
  #credencialesEmpSection {
    display: none;
    flex-direction: column;
  }
  #policySection {
    display: none;
    flex-direction: column;
  }
  #finalizarResSection {
    display: none;
    flex-direction: column;
  }
  .tituloSeccion {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
  }

  .subTituloSeccion {
    color: #ea1c24;
    font-size: 16px;
    margin-top: 30px;
    font-weight: bold;
  }

  #subtitleContactDetails {
    margin-top: 0px;
  }

  #inputDate-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .calendars-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    user-select: none;
  }
  .row-calendars {
    display: flex;
    justify-content: center;
  }
  .calendar-widget {
    width: 260px; /* Reducido el ancho del calendario */
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }

  .calendar-header {
    display: flex;
    justify-content: center; /* Centrar el mes y el año */
    align-items: center;
    background: #ea1c24;
    color: white;
    padding: 5px; /* Reducido el padding */
  }

  .calendar-header .month-year {
    font-weight: bold;
    font-size: 1em; /* Reducido el tamaño de fuente */
  }

  .calendar-body {
    padding: 10px;
  }

  .day-names,
  .days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
  }

  .day-names {
    margin-bottom: 10px;
    color: #666;
    font-weight: bold;
  }

  .day-names div {
    font-size: 0.8em; /* Reducido el tamaño de fuente de los nombres de los días */
  }

  .days-grid div.unselect {
    padding: 5px; /* Reducido el padding */
    margin: 1px; /* Reducido el margen */
    font-size: 0.9em; /* Reducido el tamaño de fuente */
    background: #a0ff8e;
    border: 1px solid #20c300;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
  }

  .days-grid div.unselect:hover {
    background: #ea1c24;
    border: 1px solid #ea1c24;
    color: white;
  }
  .days-grid div.unselect.mid {
    background: #f16d73;
    border: 1px solid #ea1c24;
    color: white;
  }
  .days-grid div.unselect.selected {
    background: #ea1c24;
    border: 1px solid #ea1c24;
    color: white;
  }
  .days-grid div.unavailable {
    background: #777777;
    border: 1px solid #777777;
    color: white;
  }

  /* Estilo para ocultar el popup por defecto */
  .popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    padding: 20px;
    background-color: #ea1c24;
    color: #ffffff;
    border: 1px solid #888;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    text-align: center;
  }

  /* Contenido del popup */
  .popup-content {
    position: relative;
    padding: 20px;
  }

  /* Botón de cerrar (X) */
  .close-btn {
    position: absolute;
    top: -5px;
    right: 10px;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
  }

  .close-btn:hover {
    color: #000;
  }

  #apartadoPods {
    display: none;
  }

  #apartadoAlumnos {
    display: none;
  }

  #apartadoFechas {
    display: none;
  }

  #apartadoSchedule {
    display: none;
  }

  .scheduleContainer {
    display: flex;
    align-items: center;
  }

  .dividerHour {
    margin-top: 70px;
    margin-right: 40px;
    margin-left: 40px;
  }

  .confirm_param_gray {
    padding: 10px;
    background-color: #e3e2e3;
  }

  .confirm_param_white {
    padding: 10px;
    background-color: #ffffff;
  }

  .confirmContainer {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    width: 100%;
  }

  .subtituloConfirm {
    color: #ffffff;
    background-color: #ea1c24;
    font-size: 16px;
    margin-top: 30px;
    margin-bottom: 0px;
    font-weight: bold;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .confirmContainerLab {
    margin-left: 50px;
    width: 40%;
  }

  .confirmContainerEmp {
    margin-right: 50px;
    width: 40%;
  }

  #confirmComentariosSection {
    display: flex;
    flex-direction: column;
    color: #000000;
    margin: 0 50px;
  }
  #confirmComentariosSection div {
    padding: 10px;
  }
  .confirmSectionText {
    margin-top: 40px;
    font-size: 12px;
    line-height: 30px;
    color: #6c757d;
  }
  .error {
    border: 1px solid #ea1c24;
    background-color: #f16d73;
    color: #ffffff;
    padding: 5px;
    margin-top: -24px;
    font-size: 10px;

    /* Transiciones */
    max-height: 0; /* Inicialmente colapsado */
    opacity: 0; /* Inicialmente invisible */
    overflow: hidden; /* Para ocultar el contenido que no se muestra */
    transition: max-height 0.5s ease, opacity 0.5s ease; /* Transición de max-height y opacity */
  }

  .error.show {
    max-height: fit-content; /* Altura máxima cuando está visible (ajusta según el contenido) */
    opacity: 1; /* Totalmente visible */
  }

  .policyContainer {
    display: flex;
    flex-direction: column;
    margin: 20px auto;
    width: 80%;
    line-height: 30px;
  }

  .policyContainer h3 {
    font-size: 16px;
    font-weight: bold;
    color: #ea1c24;
  }

  #termsContainer {
    margin-top: 70px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }

  #termsContainer label {
    margin-left: 8px; /* Espacio entre el checkbox y la etiqueta */
    font-size: 14px;
    color: #6c757d;
    font-weight: lighter;
    margin-bottom: 0px;
    user-select: none;
  }

  #termsContainer input[type="radio"] {
    margin: 0px;
    width: 16px;
  }

  .checkbox-wrapper {
    display: flex;
    align-items: center;
    margin: 0 55px;
  }

  .btn-red {
    background-color: #ea1c24;
    color: #ffffff;
    font-size: 16px;
  }
  .btn-red:hover {
    background-color: #ffffff;
    color: #ea1c24;
    border: 1px solid #ea1c24;
    transition: background 0.3s;
  }

  .contenedor_carga {
    display: flex;
  }
}
