/* Contenedor General */
    .pissis-main-container {
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        max-width: 950px;
        margin: 25px auto;
        padding: 0 15px;
    }

    /* Estilo de la Tabla */
    .pissis-main-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        background-color: #ffffff;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 12px 35px rgba(0,0,0,0.1);
        border: 1px solid #eef2f7;
    }

    /* Encabezado con Degradado Profesional */
    .pissis-main-table thead {
        background: linear-gradient(135deg, #2c3e50 0%, #4a69bd 100%);
        color: #ffffff;
    }

    .pissis-main-table th {
        padding: 20px;
        text-align: left;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Celdas */
    .pissis-main-table td {
        padding: 18px;
        border-bottom: 1px solid #f1f4f8;
        vertical-align: middle;
        color: #444;
        font-size: 0.95rem;
    }

    /* Nombre del Producto e Icono */
    .product-info {
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 700;
        color: #1e272e;
    }

    .product-info i {
        color: #3498db;
        font-size: 1.4rem;
        width: 25px;
        text-align: center;
    }

    /* Badges de Privacidad */
    .badge-pissis {
        display: inline-block;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
    }
    .badge-high { background: #e3f2fd; color: #1976d2; } /* Azul suave */
    .badge-total { background: #e8f5e9; color: #2e7d32; } /* Verde suave */

    /* 🔥 RESPONSIVE: ANTI-SCROLL HORIZONTAL 🔥 */
    @media screen and (max-width: 768px) {
        .pissis-main-table thead { display: none; }
        
        .pissis-main-table tr {
            display: block;
            margin-bottom: 20px;
            border: 1px solid #dcdde1;
            border-radius: 12px;
            padding: 12px;
            background: #ffffff;
            box-shadow: 0 4px 10px rgba(0,0,0,0.03);
        }

        .pissis-main-table td {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #f5f6fa;
            padding: 12px 5px;
            text-align: right;
        }

        .pissis-main-table td:last-child { border-bottom: 0; }

        /* Título a la izquierda en móvil */
        .pissis-main-table td::before {
            content: attr(data-label);
            font-weight: 800;
            color: #a4b0be;
            font-size: 0.75rem;
            text-transform: uppercase;
            flex: 1;
            text-align: left;
        }

        .product-info { justify-content: flex-end; flex: 1; }
    }