.cookie-table {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    gap: 1px;
    background: #ddd;
    border-radius: 12px;
    overflow: hidden;
    font-family: Roboto;
    text-align: center;
}

.mobile {
    display: none;
}

.desktop {
    display: block;
}

.cookie-table div {
    background: #fff;
    padding: 16px;
    font-size: 14px;
}

.cookie-table .header {
    font-weight: bold;
    background: #f1f3f5;
}

/* Responsive: en móviles se ven tarjetas */
@media (max-width: 768px) {
    .cookie-table {
        grid-template-columns: 1fr;
    }

    .cookie-table .header {
        background: transparent;
        font-size: 13px;
        font-weight: bold;
        color: #555;
        padding-bottom: 4px;
    }

    .cookie-table .item {
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        margin-bottom: 16px;
        padding: 16px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .desktop {
        display: none;
    }

    .mobile {   
        display: block;
    }

}