body {
    background-color: #d8d8d8;
    margin: 0;
    padding: 0;
    color: black;
    font-family: 'Roboto', 'sans-serif';
    font-size: 0.75em !important;
}


/* ENCABEZADO */

.header {
    display: flex;
    align-items: center;
    padding-bottom: 1em;
    background-color: #280071;
    color: #e0e0e0;
    padding: 0;
    justify-content: space-around;
    align-items: center;
}



/* LOGO */

.logo {
    width: 8em;
    height: 8em;
    margin-right: 0px; 
}


/* CONTENEDOR DE LA TABLA */

.container {
    max-width: 95% !important;
    padding: 0 !important;
    margin-left: auto;
    margin-right: auto;
}


/* BOTÓN EXPORTAR A EXCEL */

.boton {
    background-color: #280071;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.boton:hover {
    background-color: #1a0043;
}

.boton-detalle {
    padding: 5px 5px;
    background-color: #27CDC8;
    color: #212529;
}


/* ALERT DEL BOTÓN "DETALLE" */

.custom-swal-content {
    font-size: 14px; 
}


/* CHECKBOXES */

.filter-container {
    display: flex;
    flex-direction: row;
    align-items: center; 
    justify-content: center; 
    gap: 5px; 
}

.filter-checkbox {
    margin-right: 5px; 
}

.filter-container label {
    font-size: 16px; 
    color: #000000; 
}


/* RESPONSIVE PARA MÓVILES */

/* Inicialmente la opción "ver detalle" aparece como oculta */

.table th,
.table td {
    display: table-cell;
}

.table-column .head14,
.table-row .col14 {
    display: none;  
}

/* Estilos para pantallas pequeñas (menos de 1000px de ancho) */
@media screen and (max-width: 1000px) {
    .table th,
    .table td {
        display: none;
    }

    .table th:nth-child(-n+3),
    .table td:nth-child(-n+3) {
        display: table-cell;
    }

    .table-row .col14,
    .table-column .head14 {
        display: inline-block;  /* Muestra el botón solo en pantallas pequeñas */
    }


    .button-container {
        display: flex;
        justify-content: center; /* Centra el botón horizontalmente */
        align-items: center; /* Centra el botón verticalmente */
        padding-bottom: 1em;
    }

}





.little-buton-edit{
    background-color: #00d084;
    border: none;
    padding: 10px;
    color: white;
}




