

.grid__amadellaves{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    padding: 4rem 2rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.grid__amadellaves__item{
    width: 45%;
    
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: var(--white);
    padding: 2rem 1rem;
    text-align: center;
    border-radius: 0.5rem;
    background-color: var(--black);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.wrap__cambio__habitacion {
    height: calc(100vh - 260px);
}

.inner__cambio__habitacion {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.grid__cambio__habitacion ,
.grid__estatus__bloque {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 1rem;
    padding-bottom: 1rem;
    align-items: flex-start;
}

.estatus__bloque__item ,
.grid__item__room {
    width: 9.5%;
    min-width: 9.5%;
    font-size: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 70px;
    font-family: 'inter-bold', sans-serif;
    background-color: var(--black);
    margin-bottom: 0.5rem;
    border-radius: 0.25rem;
    color: var(--white);
    cursor: pointer;
}
.estatus__bloque__item {
    background-color: var(--color-green);
}

.grid__item__room.active{
    background-color: var(--color-red);
}
.estatus__bloque__item.selected{
    background-color: var(--estatus-selected);
}

.list__recamaristas {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-left: 0;
}
.list__recamaristas li{
    display: flex;
    width: 100%;
    background-color: var(--black);
    color: var(--white);
    border-radius: 0.5rem;
    padding: 2rem 1.5rem;
    margin-top: 1rem;
    text-align: center;
    justify-content: center;
}
