:root {
    --red-crell: #CC0000;
    --orange-crell: #f1b500;
}

html {
    position: relative;
    min-height: 100%;
}
body {
    margin-bottom: 60px;
}

.text-red-crell {
    color: var(--red-crell);
}

.bg-red-crell {
    background-color: var(--red-crell) !important;
}

.text-orange-crell {
    color: var(--orange-crell);
}

.bg-orange-crell {
    background-color: var(--orange-crell) !important;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    line-height: 60px;
    background-color: #f5f5f5;
}
body > .container {
    padding: 60px 15px 0;
}
.footer > .container {
    padding-right: 15px;
    padding-left: 15px;
}
code {
    font-size: 80%;
}
@media only screen and (max-width: 768px) {
    .footer {
        display: none;
    }
}

.chk-docto-pago {
    width: 1.75rem;
    height: 1.75rem;
    margin: 0;
    cursor: pointer;
    accent-color: #198754;
}
/* Deseleccionado: borde negro y fondo blanco para contrastar con la tabla */
.form-check-input.chk-docto-pago:not(:checked) {
    border: 1px solid #000;
    background-color: #fff;
}
/* Marcado: mantiene el verde pero con borde visible */
.form-check-input.chk-docto-pago:checked {
    border: 0px solid #000;
    background-color: #198754;
}
/* Foco al tabular (accesibilidad) */
.form-check-input.chk-docto-pago:focus {
    border-color: #000;
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
    .chk-docto-pago {
        width: 2.25rem;
        height: 2.25rem;
    }
}