﻿/* Padding para el contenedor del buscador */
.dataTables_filter {
    padding: 10px;
    text-align: right;
}

    /* Padding para el input de búsqueda */
    .dataTables_filter input {
        padding: 8px 12px; /* tamaño dentro del input */
        border-radius: 8px; /* esquinas redondeadas (opcional) */
        border: 1px solid #ccc; /* borde más suave */
    }

/* Padding para toda la tabla */
#tablegestiontaller_wrapper {
    padding: 20px;
}






table.dataTable {
    font-size: 12px;
}

    table.dataTable td,
    table.dataTable th {
        padding: 8px 10px;
    }

 Estilo de tabla flotante 
.table-float {
    background-color: inherit;
    border-radius: 12px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);  Sombra suave 
    overflow: hidden;
    margin-bottom: 20px;
}

     Hacer que DataTable ajuste dentro del contenedor 
    .table-float table.dataTable {
        margin-bottom: 0;
        border-collapse: separate;
        border-spacing: 0;
    }

         Opcional: fila hover suave 
        .table-float table.dataTable tbody tr:hover {
            background-color: #f8f9fa;
        }

 Para modo oscuro 
.dark-mode .table-float {
    box-shadow: 0px 4px 20px rgba(255, 255, 255, 0.05);
    background-color: #212529;
}

    .dark-mode .table-float table.dataTable tbody tr:hover {
        background-color: #343a40;
    }

