html {
    font-family: "Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
    font-size: 1em;
}

body {
    color: black;
    background-color: whitesmoke;
    margin:0;
    display:block;
}

.contenedor-titulo-mes-actividad {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: lighter;
    text-transform: capitalize;
}

.contenedor-controles-semana {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navegacion-semana {
    border: 1px solid #2774e7;
    border-radius: 80px;
    color: #1c9ef5;
    cursor: pointer;
    font-size: 1.6em;
    font-weight: lighter;
    height: 40px;
    text-align: center;
    width: 40px;
    transition: 0.4s;
    opacity: 0.9;
}

.navegacion-semana:hover {
    border: 2px solid lightgrey;
    background-color: rgb(228, 238, 252);
    color: #b6b3b3;
    transition: 0.4s;
}

#contenedor-dias {
    display:flex;
    justify-content: center;
    align-items: center;
    background-color: #fafafa;
}

.cabecera-dias {
    border-right: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
    width: 14.27%;
    padding: 15px 0px 15px 15px;
    min-height: 50px;
}

.formato-numero-dia {
    font-size: 1.8em;
    font-weight: lighter;
}

.formato-dia {
    font-weight: lighter;
}

#contenedor-semana-franjas-horarias {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.contenedor-dia-franjas-horarias {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 14.7%;
    min-height: 150px;
}

.franja-horaria {
    width: 99%;
    border-radius: 20px;
    background-color: lightseagreen;
    color: white;
    font-weight: bolder;
    opacity: 0.8;
    margin-bottom: 5px;
}

@media only screen and (max-width: 576px) {
    .franja-horaria {
        border-radius: 10px;
        font-size: 0.7em;
        font-weight: bold;
    }
}

.franja-horaria:hover {
    opacity: 0.5;
}

.selected {
    background-color: yellow;
    opacity: 0.6;
    color: black;
}

#botones {
    display: flex;
    justify-content: center;
    align-items: center;
}

#botonReserva:disabled{
    opacity: 0.5;
    background-color: lightgrey;
}

#reservaRealizada {
    display: flex;
    justify-content: center;
    align-items: center;
}
.card {
    width: 80%;
}
.card-header {
    display: flex;
    justify-content: space-between;
    font-size: 1.2em;
    color: white;
    opacity: 0.8;
}
