﻿/* =========================
   TABLA NORMAL (PC)
   ========================= */

.ia-scroll-section {
    width: 100%;
    overflow: auto;
}

.ia-sticky-table {
    width: 100%;
    border-collapse: collapse;
}

    .ia-sticky-table th,
    .ia-sticky-table td {
        padding: 10px;
        border-bottom: 1px solid #e5e5e5;
        text-align: left;
    }

/* =========================
   MOVIL (modo tarjetas)
   ========================= */

@media (max-width:768px) {

    /* ocultar encabezado */
    .ia-sticky-table tr:first-child {
        display: none;
    }

    .ia-sticky-table,
    .ia-sticky-table tbody,
    .ia-sticky-table tr,
    .ia-sticky-table td {
        display: block;
        width: 100%;
    }

        .ia-sticky-table tr {
            background: #fff;
            margin-bottom: 12px;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            padding: 10px;
        }

        .ia-sticky-table td {
            display: flex;
            justify-content: space-between;
            padding: 6px 4px;
            border-bottom: 1px dashed #eee;
        }

            .ia-sticky-table td:before {
                content: attr(data-label);
                font-weight: 600;
                color: #555;
            }
}
@media (max-width:768px) {

    .ia-sticky-table td:first-child {
        justify-content: center;
    }
}
