html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

/* Paginación centrada y compacta */
.dataTables_wrapper .dataTables_paginate {
    text-align: center;
    margin: 8px 0;
    font-size: 12px; /* Letra más pequeña */
}

    /* Botón activo */
    .dataTables_wrapper .dataTables_paginate .paginate_button.current {
        background-color: #9ca3af; /* gris medio */
        color: white !important;
        border-color: #9ca3af;
    }


/* Bootstrap */

.modal-title {
    line-height: 1;
}

.fc-event, .fc-event-dot {
    border-radius: 4px;
}

.btn-group {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

    .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
    .btn-group > .btn-group:not(:last-child) > .btn {
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
    }

    .btn-group > .btn:not(:first-child),
    .btn-group > .btn-group:not(:first-child) > .btn {
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
    }

.btn-primary {
    color: #fff;
    background-color: #1963EE;
    border-color: #1963EE;
}

    .btn-primary:hover {
        color: #fff;
        background-color: #144bb2;
        border-color: #0062cc;
    }

    .btn-primary:focus, .btn-primary.focus {
        color: #fff;
        background-color: #144bb2;
        border-color: #0062cc;
        box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
    }

.btn-success {
    color: #fff;
    background-color: #13B97F;
    border-color: #13B97F;
}

    .btn-success:hover {
        color: #fff;
        background-color: #10a06e;
        border-color: #10a06e;
    }

    .btn-success:focus, .btn-success.focus {
        color: #fff;
        background-color: #10a06e;
        border-color: #10a06e;
        box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
    }

.btn-danger {
    color: #fff;
    background-color: #FE5356;
    border-color: #FE5356;
}

    .btn-danger:hover {
        color: #fff;
        background-color: #c82333;
        border-color: #bd2130;
    }

    .btn-danger:focus, .btn-danger.focus {
        color: #fff;
        background-color: #c82333;
        border-color: #bd2130;
        box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
    }


.btn-dark {
    color: #fff;
    background-color: #9D9DA0;
    border-color: #9D9DA0;
}

    .btn-dark:hover {
        color: #fff;
        background-color: #23272b;
        border-color: #1d2124;
    }

    .btn-dark:focus, .btn-dark.focus {
        color: #fff;
        background-color: #23272b;
        border-color: #1d2124;
        box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
    }