#calendar {
    border-radius: 16px;
    overflow: hidden;
}

#datatable_eventos{
    border-radius: 16px;
    overflow: hidden;
}
#calendar-container {
    display: flex;

    &>#calendar {
        width: 40%;
        max-height: 60vh;
        min-height: 60vh;
        margin: 0 12px 0 0px;

    }

    &>#tabla_eventos {
        width: 60%;
        margin: 0 0 0 12px;
    }
}
.input-container input{
    background: transparent;
}
.content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    /* Hace que page-content crezca para ocupar el espacio sobrante */
    overflow: hidden;
    /* Evita el desbordamiento */
}

.fc-toolbar-title {
    display: none;
}

.dataTables_length {
    display: none !important;
}

.table {
    & > tbody {
        & > tr {
            &>td {
                padding: 12px;
                vertical-align: middle;
                color: #050505;
                border-left: 1px solid #fff;
                font-family: "DM Sans";
                font-size: 14px;
                font-style: normal;
                font-weight: 400;
                line-height: 20px;
                letter-spacing: -0.028px;
                 white-space: normal!important;
                text-align: center;
            }
        }
    }
}
.fc-scrollgrid-section-liquid {
    background: #f9f9f9;
}

.fc-col-header-cell-cushion {
    color: white;
}

.fc-col-header {
    &>tbody {
        &>tr {

            background: linear-gradient(33deg,
                    var(--componet-secondary-color) 0%,
                    var(--componet-secondary-color) 20%,
                    var(--componet-tertiary-color) 20%,
                    var(--componet-tertiary-color) 80%,
                    var(--componet-primary-color-trasparent) 80%,
                    var(--componet-primary-color) 100%) !important;

            &>th {
                padding: 18px 0;
                background: transparent;
                color: white;
                border: none
            }
        }
    }
}

.fc-scrollgrid-sync-table {
    &>tr {
        &>th {
            border: none
        }
    }
}

.fc-daygrid-day-frame.fc-scrollgrid-sync-inner {
    width: calc(100% - 12px);
    /* 6px a cada lado (izquierda y derecha) */
    height: calc(100% - 12px);
    overflow: hidden;
    box-sizing: border-box;
    margin: 6px;
    border-radius: 10.353px;
    background: #FFF;
    position: relative;
}

.fc-daygrid-day-events {
    position: absolute;
    bottom: 0;
    /* Posiciona el elemento justo en la parte inferior del td */
    width: 100%;
    /* Asegura que ocupe todo el ancho disponible */
}

.fc-day-other {
    &>.fc-daygrid-day-frame.fc-scrollgrid-sync-inner {
        background: transparent;
        border: 0.5px solid #ECECEC;
    }
}

.fc-day-today {
    &>.fc-daygrid-day-frame.fc-scrollgrid-sync-inner {
        &>.fc-daygrid-day-top {
            .fc-daygrid-day-number {
                border: 1px solid var(--componet-primary-color);
            }
        }
    }
}

.fc-event-title.fc-sticky {
    padding: 8px;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Syne;
    font-size: 10px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    /* 180% */
    letter-spacing: -0.06px;
    text-transform: uppercase;
}

.fc-h-event {
    display: block;
    border: 1px solid var(--componet-primary-color);
    background-color: var(--componet-primary-color) !important;
    color: var(--componet-primary-color-text) !important;
}

.fc-daygrid-day-number {
    margin: 4px 4px 0 0;
    display: flex;
    width: 36px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    border-radius: 50px;
    background: #FFF;
}