
.div__calendario_lista{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: flex-start;
    gap: 0.5rem;
}

.calendario_lista_item{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    align-content: flex-start;
    gap: 1em;

    background-color: #eee;
    border-radius: 0.5rem;
    padding: 0.5rem 0.8rem;
    font-size: 0.9rem;
}

.calendario_lista_item a{
    text-decoration: none;
    color: #444;
}

.calendario_lista_item:hover,
.calendario_lista_item a:hover{
    background-color: var(--color-ppal);
    color: #fff !important;
    fill: #fff !important;
}


.cabecera_calendario{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    align-content: flex-start;
    gap: 1em;
    width: 400px;
}

.cabecera_calendario div{
    font-size: 2rem;
    font-weight: bold;
}

.cabecera_calendario div a{
    font-size: 2rem;
    font-weight: bold;
    background-color: #ccc;
}

/* *********************************************************************** */

.div__calendario_mes{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    list-style: none;
    padding: 0;
}

.div__calendario_mes .celda{
    background-color: #fff;
    text-align: center;
    padding: 0.5rem;

    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    /* align-items: flex-start; */
    align-content: flex-start;
    gap: 0.3rem;
}

.div__calendario_mes .celda:nth-child(7n){
    border-right: 1px solid #ddd;
}


.celda_cabecera{
    background-color: #444 !important;
    border-color: #444 !important;
    color: #fff;
    font-weight: bold;
}

.celda_evento{
    width: 100%;
    padding: 0.4rem 0.4rem;
    background-color: #eee;
    font-size: 0.8rem;
    border-radius: 0.5rem;
    line-height: 1rem;
    text-align: left;

    border: none; /* 1px solid #eee;*/
}

.celda_evento:hover{
    background-color: #ccc;
}


.celda_evento a{
    text-decoration: none;
    color: #444;
    cursor: pointer;
}

.celda_evento_activo, .celda_evento_activo a{
    background-color: var(--color-ppal) !important;
    color: #fff !important;
}


.div_reserva_vacio{
    background-color: #eee;
    height: 100%;
    width: 100%;

    padding: 5rem 1rem;
    color: #999;
    border-radius: 0.5rem;
    
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 1em;

}

.btn_mes{
    cursor: pointer;
    background-color: var(--color-ppal) !important;
    color: #fff !important;
}

.btn_mes:hover{
    cursor: pointer;
    background-color: var(--color-2) !important;
    color: #fff !important;
}