#calendar-container {
    position: relative; /* Ajuste para la posición absoluta del encabezado */
}

.day-header-cs {
    font-weight: bold;
    background-color: #f0f0f0;
    text-align: center;
    padding: 10px;
    border: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .calendar-cs:not(:first-child) {
    display: none;
  }
}
.calendar-cs {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    max-width: 400px;
    grid-auto-rows: max-content;
}

.day-cs {
    padding: 10px;
    background-color: white;
    border: 1px solid #ccc;
    text-align: center;
    cursor: pointer;
}

.day-cs.disabled {
    background-color: #e0e0e0;
}

.day-cs.selected {
    background-color: #006ce4;
    color: white;
}

.day-cs:hover:not(.disabled):not(.selected) {
    background-color: #006ce452;
}
        
.collapseBookingHotelHotel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    transition: min-height 0.4s ease-in-out;
}

@media (max-width: 576px){
    .collapseBookingHotel.open {
        max-height: 100vh;
        overflow: auto; /* Agrega un scroll si el contenido es más alto que la pantalla */
        background-color: white;
        z-index: 100;
        overflow: auto; 
        position: absolute;
        max-width: calc(100vw - 5%);
        width: 100%;
        margin-left: -.70em !important;
    }
}

@media (min-width: 576px){
    .collapseBookingHotel.open {
        max-height: 100vh; /* Ajusta la altura máxima según tus necesidades */    
        position: absolute;
        background-color: white;
        width: 100%;
        z-index: 100;
        margin-left: -.70em !important;
    }
}
@media (min-width: 991px){
    .collapseBookingHotel.open {
        max-height: 100vh; /* Ajusta la altura máxima según tus necesidades */    
        position: absolute;
        background-color: white;
        width: 70%;
        z-index: 100;
    }
}
@media (min-width: 1200px){
    .collapseBookingHotel.open {
        max-height: 100vh; /* Ajusta la altura máxima según tus necesidades */    
        position: absolute;
        background-color: white;
        width: 60%;
        z-index: 100;
    }
}