:root {
    --bg: #ffffff;
    --border: #e0e0e0;
    --text: #222222;
    --muted: #666666;
    --primary: #0052a3;
}

#bee-cookie-policy {
    margin: 0 auto;
    font-family: system-ui, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text);
    background: var(--bg);
}

.bee-cookie-title {
    font-size: 18px;
    margin: 0 0 8px;
    font-family: Poppins, sans-serif;
}

.bee-cookie-description {
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 18px;
    font-family: Poppins, sans-serif;
}

/* Secciones */
.bee-cookie-section {
    margin-bottom: 32px;
}

.bee-cookie-group-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px;
}

.bee-cookie-group-desc {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 18px;
    font-family: Poppins, sans-serif;
}

/* Tablas */
.bee-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.bee-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.bee-table thead {
    background: #f5f5f5;
}

.bee-table th,
.bee-table td {
    padding: 10px 12px !important;
    border: 1px solid var(--border);
    vertical-align: top;
    text-align: left;
    font-size: 13px;


    /* Para evitar scroll horizontal */
    white-space: normal !important;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.bee-table th:nth-child(3),
.bee-table td:nth-child(3) {
    min-width: 140px;
    width: 140px;
}

.bee-table th {
    font-weight: 600;
}

/* Responsive móvil */
@media (max-width: 768px) {

    #bee-cookie-policy {
        padding: 16px 10px;
    }

    .bee-table {
        border: 0;
        min-width: 0;
    }

    .bee-table thead {
        display: none;
    }

    .bee-table tbody,
    .bee-table tr,
    .bee-table td {
        display: block;
        width: 100%;
    }

    .bee-table tr {
        margin-bottom: 16px;
        border: 1px solid var(--border);
        border-radius: 6px;
        overflow: hidden;
        background: #fff;
    }

    .bee-table td {
        border: 0;
        border-bottom: 1px solid var(--border);
        padding: 8px 10px;
    }
    .bee-table th:nth-child(3),
    .bee-table td:nth-child(3) {
        width: auto !important;
        min-width: 0 !important;
    }
    .bee-table td:last-child {
        border-bottom: 0;
    }

    .bee-table td::before {
        content: attr(data-label);
        display: block;
        font-weight: 600;
        margin-bottom: 4px;
        color: var(--muted);
        font-size: 12px;
    }
}
