/**
 * NUEVA AGENDA
 **/

.agenda{
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 1242px;
    margin: 0 auto;
}
.agenda_menu{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding-bottom: 18px;
    margin-bottom: 0px;
    border-bottom: 1px solid #d2d2d2;
    width: 100%;
}
.agenda_menu_btn{
    padding: 5px;
    border-radius: 25px;
    width: 40px;
    border: 1px solid #d2d2d2;
    cursor: pointer;
}
.agenda_menu_btn_left{
    margin-right: 15px;
}
.agenda_container{
    width: 100%;
    display: none;
    flex-direction: row;
    flex-wrap: nowrap;
}

.agenda_resumenEmpleadoBox{
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    padding: 6px;
}

.agenda_col_izq{
    width: 10%;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    margin-top: 60px;
}
.agenda_col_izq_hora_box{
    border: 1px solid #d2d2d2;
    margin-bottom: 5px;
    width: 95%;
    height: 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.agenda_body{
    width: 90%;
    min-width: 1050px;
    display: flex;
    flex-direction: column;
}
.agenda_body_dias_box{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: hidden;
}
.agenda_body_dia_box{
    display: flex;
    flex-direction: column;
    min-width: 14.29%;
}
.agenda_body_dia_title_box{
    width: 95%;
    height: 60px;
    font-weight: 650;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.agenda_body_dia_tareas_box{
    width: 95%;
    display: flex;
    flex-direction: column;
}
.agenda_body_dia_tarea_box{
    width: 100%;
    border: 1px solid #d2d2d2;
    margin-bottom: 5px;
    height: 55px;
    padding: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.2vh;
    font-weight: 600;
}

.reservaAsistida{
    background-color: #FFEFBE;
}
.reservaNoAsistida{
    background-color: #FDD8D9;
}
.reservaLibre{
    background-color: #E4FDD8;
}
.reservaBloqueada{
    background-color: #F6F6F5;
}






/** EMPLEADOS **/
.res_s2_empleados_container{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
    align-items: flex-start;
    align-content: flex-start;
    user-select: none;
    padding-bottom: 8px;
    margin-top: 15px;
}
.res_s2_dia_empleado_box{
    padding: 8px;
    border: 1px solid #d2d2d2;
    border-radius: 12px;
    width: 140px;
    height: 50px;
    cursor: pointer;
    margin-right: 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
}
.res_s2_dia_empleado_img{
    width: 40px;
    height: 35px;
    border-radius: 40%;
}

.scrollable {
    display: flex;
    overflow-x: auto; /* Hacer que el contenido sea scrollable horizontalmente */
    white-space: nowrap; /* Hacer que el contenido no se envuelva */
}

.content {
    /*display: inline-block; /* Hacer que el contenido sea un bloque en línea */
}