

section#calendar-eventos{
    background-image: url('../img/calendar-img.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;

    & .mask{
        background-image: linear-gradient(180grad, #376080, #258ea626);
    }
    /* background-image: linear-gradient(0deg, #212529, transparent 30%); */

    & div#content-calendar{
        height: 100%;

        & div.calendar{
            max-width: 650px;
        }
    }
}

h2 {
    font-size: 2rem;
    font-family: 'Bebas Neue';
    line-height: 1;
}
p{
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.navegacion {
    background-color: var(--dark-color);
    text-align: center;
    color: white;
    border-radius: 5px 5px 0 0;
}

.navegacion a {
    text-decoration: none;
}

.calendar table {
    width: 100%;
    border-collapse: collapse;

    & th, td {
        padding: 15px 10px;
        text-align: center;
    }

    & td{
        border: 1px solid #ddd;
        font-size: 1.2rem!important;
        background-color: ghostwhite;
        color: #6c757d;
    }

    & th {
        border: 1px solid #69738a;
        font-size: 1rem!important;
        font-weight: 600;
        color: whitesmoke;
        background-color: #546777;
    }

    & .destacado {
        background-color: var(--third-color); /* Color de fondo para días destacados */
        font-weight: bold;
        color: whitesmoke;
        text-shadow: 0px 0px 5px gray;
    }
    
}








/* Opcional: estilo para el scroll */
  #content-calendar > .col-lg-6:first-child::-webkit-scrollbar {
    width: 8px;
  }
  
  #content-calendar > .col-lg-6:first-child::-webkit-scrollbar-thumb {
    background-color: var(--gray-color);
    border-radius: 4px;
  }