
.table {
    margin: 0 auto;
    border-spacing: 0;
    border-radius: 10px;
    border-collapse: unset;
    border-bottom-style: solid;
    border-width: 1px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.table thead th {
    vertical-align: bottom;
    /*border-bottom: 2px solid #dee2e6;*/
    background-color: #abaaaa;
    color: white;
}


.table thead tr th:first-child {
    border-radius: 10px 0px 0px 0px;
}

.table thead tr th:last-child {
    border-radius: 0px 10px 0px 0px;
}

.table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 10px;
}

.table tbody tr:last-child td:last-child {
    border-radius: 0 0 10px 0;
}

.table > :not(:last-child) > :last-child > * {
    border-bottom-color: transparent;
}

table.dataTable.no-footer {
    border-bottom: 1px #dee2e6;
}

.table tfoot tr:last-child th:last-child {
    border-radius: 0 0 10px 10px;
}

#loaderOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1000;
}

.spinner-out {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001; /* Asegura que el spinner esté encima del fondo semi-transparente */
}

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #000068; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.table .bg-warning {
    background-color: rgba(255, 193, 7, 0.6) !important;
}

.table .bg-danger {
    background-color: rgba(220, 53, 69, 0.6) !important;
}

.is-invalid input[type="checkbox"] {
    outline: 2px solid red;
}

.is-valid input[type="checkbox"] {
    outline: 2px solid green;
}

.checkBono-container {
    display: inline-block;
    width: 25px;
    height: 25px;
}

#checkBono {
    width: 25px;
    height: 25px;
    margin: 0;
}
