.row.no-gutters-fix {
    margin-left: 0;
    margin-right: 0;
}

.eventos-wrapper {
    background-image: url('../img/calendario.jpg');
    /* tu imagen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding-right: 3rem!important;
    padding-left: 3rem!important;
    font-family: 'Gotham Book';
}

.evt-body .calendar-placeholder,
.calendar-access-link,
.evt-list {
    min-height: 560px;
}
.evt-list{
    justify-content: flex-end!important;
}

#calendario-eventos {
    background-color: rgb(71, 83, 97);
    /* fondo gris azulado */
    color: white;
    padding: 2rem;

    max-width: 100%;
    overflow-x: auto;
}
.evt-body {
    margin-bottom: 0rem !important;
    padding: 0 !important;
}

.titulo-mes>h5 {
    font-family: 'Gotham Medium';
    font-size: 2.5rem;
    color: white;
}

.titulo-mes>.link-arrow {
    color: white;
    font-size: 2.5rem;
    padding: 0 1rem;
    cursor: pointer;
    text-decoration: none;
}

.table-calendar {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.table-calendar th {
    font-weight: bold;
    padding: 0.5rem 0;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    text-transform: uppercase;
    font-size: 1rem;
    color: white;
}

.table-calendar td {
    padding: 0.7rem 0;
    font-size: 1.3rem;
    color: white;
    cursor: default;
    position: relative;
    vertical-align: middle;
}

.table-calendar td span {
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: inline-block;
    line-height: 2.5rem;
    font-weight: bold;
}

/* Día actual */
.table-calendar td.activo span {
    /* background-color: white; */
    /* color: #4d5965; */
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: inline-block;
    line-height: 2.5rem;
    font-weight: bold;
}

/* Día con evento */
.table-calendar td.evento span,
.table-calendar td.evento-idim span {
    background-color: #8da2cd;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: inline-block;
    line-height: 2.5rem;
    transition: 0.3s ease;
}
.table-calendar td.evento-idim span {
    background-color: #fff;
    color: #475361;
}
.table-calendar td.evento-idim:hover span {
    background-color: #e2e2e2;
    color: #475361;
    cursor: pointer;
}

.table-calendar td.evento:hover span {
    background-color: rgba(255, 255, 255, 0.35);
    cursor: pointer;
}

/* Día vacío o fuera del mes */
.table-calendar td.vacio {
    background-color: transparent;
    pointer-events: none;
    opacity: 0.3;
}

/* Tooltip texto más limpio */
.tooltip-inner {
    max-width: 300px;
    text-align: left;
    background-color: white;
    color: #333;
    font-size: 0.85rem;
    border: 1px solid #ddd;
}

.tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: white;
}

.cal-padding {
    width: 5rem !important;
    /* o el tamaño visual que desees */
    background-color: transparent;
    pointer-events: none;
}

.link-white-calendar,
.link-white-big-calendar {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
}
.link-white-big-calendar {
    font-size: 3rem;
}
.link-white-calendar:hover,
.link-white-big-calendar:hover {
    color: white;
    text-decoration: underline;
}


.skeleton {
    animation: skeleton-loading 1.5s infinite;
    background: linear-gradient(90deg, #4d5965 25%, #5c6673 50%, #4d5965 75%);
    background-size: 200% 100%;
}

.skeleton-title {
    height: 1.8rem;
    width: 10rem;
    border-radius: 0.3rem;
    margin: 0 auto 1.5rem;
}

.skeleton-circle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    margin: 0 auto;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* columna izquierda */
.big-calendar-icon {
    font-size: 40px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: rgb(71, 83, 97);
    width: 74px;
    height: 74px;
    border-radius: 50%;
    font-size: 20px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.big-calendar-icon:hover {
    background-color: rgb(71, 83, 97);
    color: white;
}
div#eventos-laterales {
    padding-left: 20px;
}
/* Columna derecha */

span.evt-second-line {
    position: relative;
    top: -20px;
}
.evt-list h5 {
    color: rgba(138, 159, 188);
    /* Celeste */
    font-size: 15px;
    margin-bottom: 0;
}

.evt-list p {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0;
}

.evento-item {
    /*border-bottom: 1px solid rgba(255, 255, 255, 0.2);*/
    padding-bottom: 0.5rem;
}