@font-face {
    font-family: 'roboto-bold';
    /* Nombre que asignas a la fuente */
    src: url('font/Roboto/Roboto-Bold.ttf') format('truetype'),
        url('font/Roboto/Roboto-BoldItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'roboto-medium';
    /* Nombre que asignas a la fuente */
    src: url('font/Roboto/Roboto-Medium.ttf') format('truetype'),
        url('font/Roboto/Roboto-MediumItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'roboto-regular';
    /* Nombre que asignas a la fuente */
    src: url('font/Roboto/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'roboto-light';
    /* Nombre que asignas a la fuente */
    src: url('font/Roboto/Roboto-Light.ttf') format('truetype'),
        url('font/Roboto/Roboto-LightItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* MODIFICAMOS EL SCROLLBAR */
*::-webkit-scrollbar {
    width: 10px; /* Ancho del scrollbar */
}
*::-webkit-scrollbar-thumb {
    background-color: #7D7F82; /* Color del scrollbar */
    border-radius: 6px; /* Radio de borde del scrollbar */
    cursor: pointer;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: #E11E00; /* Color del scrollbar al pasar el mouse sobre él */
}

*::-webkit-scrollbar-track {
    /* background-color: white; */ /* Color del fondo del scrollbar */
    border-radius: 6px; /* Radio de borde del scrollbar */
}
/* FIN DE SCROLLBAR */

*{
    font-family: roboto-regular;
}
body {
    height: 100vh;
    margin: 0;
}

/* HEADER */
header {
    height: 70px;
    width: 100%;
    background: #F6F9FC;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: roboto-regular;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.ctn-header {
    max-width: 1920px;
    width: 100%;
    height: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3%;
    box-sizing: border-box;
}
.ctn-header-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.ctn-header-img img{
    height: 100%;
}

.ctn-header-title{
    text-decoration: none;
}

h1 {
    font-size: 22px;
    color: #323639;
    text-decoration: none;
    font-family: roboto-bold;
}
/* FIN HEADER */
.cuerpo-calendario{
    padding: 30px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
}
.encabezado-calendar{
    padding-top: 30px;
    height: 35px;
    font: 20px roboto-bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #940a00;
    color: #fff;
}

.calendar-header button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
}
.calendar-header button span{
    display: flex;
    justify-content: center;
    align-items: center;
}
.calendar-header .prev-month{
    transform: rotate(180deg);
}

.calendar-header select {
    background-color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

.calendar-body {
    padding: 15px;
}

.days-of-week {
    display: flex;
    justify-content: space-between;
}

.days-of-week div {
    width: 14.28%;
    text-align: center;
    font-weight: bold;
}

.days {
    display: flex;
    flex-wrap: wrap;
}

.days div {
    width: 14.28%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 5px;
}
.days div a{
    pointer-events: none !important;
    color: black !important;
    text-decoration: none !important;
}
.days div:hover {
    background-color: #e6e6e6;
}

.days .today {
    background-color: #940a00;
    color: #fff;
    border-radius: 5px;
}

.days .has-pdf a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: fill !important;
    font-family: roboto-bold;
    color: #940a00 !important;
    text-decoration: none !important;
}

.flecha-bloqueada{
    opacity: 0.5;
}


.txt-pie-calendario{
    width: 100%;
    text-align: center;
    padding-bottom: 30px;
}
.text-rojo-bold{
    font-family: roboto-bold;
    color: #E11E00 ;
}


.days .prev-date a,
.days .next-date a{
    opacity: 0;
    pointer-events: none !important;
}

.days .prev-date:hover,
.days .next-date:hover{
    cursor: auto;
    background-color: white;
}

@media only screen and (max-width: 700px) {
    header{
        height: 60px;
    }
    h1{
        font-size: 18px;
    }
}