/*
 # ########*###########################
 Autor: José Luis Rodriguez
 Mail: jrodriguez@bincodex.com
 Web: https://bincodex.com
 Fecha: 2026-08-06 22:15:51
 Archivo: tables.css
 Codificación: UTF-8
 Editado en: Kate 25.04.3
 ####################################
 */



/* ===== ESTILO MODERNO PARA TABLAS ===== */
.tableGenMtz {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Encabezado */
.tableGenMtz thead {
    background: linear-gradient(135deg, #ffaa7f 0%, #ffaa00 100%);
    color: white;
}

.tableGenMtz th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 10;
}

/* Celdas del cuerpo */
.tableGenMtz td {
    padding: 14px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
    color: #2d3436;
    transition: all 0.2s ease;
}

/* Filas - Efecto hover */
.tableGenMtz tbody tr {
    transition: all 0.2s ease;
}

.tableGenMtz tbody tr:hover {
    background: #f8f9fa;
    transform: scale(1.002);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Última fila sin borde */
.tableGenMtz tbody tr:last-child td {
    border-bottom: none;
}

/* Badges de estado */
.tableGenMtz .estado-pendiente {
    background: #fff3cd;
    color: #856404;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    letter-spacing: 0.3px;
}

.tableGenMtz .estado-gestionado {
    background: #d4edda;
    color: #155724;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    letter-spacing: 0.3px;
}





/* Responsive */
@media (max-width: 768px) {
    .tableGenMtz {
        border-radius: 8px;
        font-size: 0.85rem;
    }

    .tableGenMtz th,
    .tableGenMtz td {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
}
