.mgc-compliance-wrapper {
    margin: 20px 0;
    padding: 20px;
    background: #fdfdfd; 
    /* Soft background, no border */
    border-radius: 8px;
    font-size: 0.9em;
    color: #444;
}

.mgc-checkbox-row {
    margin-bottom: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Legal Toggle (Heading) */
.mgc-legal-toggle {
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.85em;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: default;
    display: flex;
    align-items: center;
}

.mgc-legal-toggle .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
    margin-left: 5px;
    opacity: 0.7;
}

/* Table - Clean Look */
.mgc-legal-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px; /* Spacing between rows instead of borders */
    margin-top: 5px;
}

.mgc-legal-table th,
.mgc-legal-table td {
    text-align: left;
    padding: 0 10px 0 0;
    border: none; /* No borders */
    vertical-align: top;
    font-size: 0.85em;
    line-height: 1.5;
}

.mgc-legal-table th {
    width: 25%;
    font-weight: 400;
    color: #888; /* Softer label color */
    white-space: nowrap;
}

.mgc-legal-table td {
    color: #333;
}

/* Links */
.mgc-compliance-wrapper a {
    color: #2271b1; /* WP Blue standard */
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.mgc-compliance-wrapper a:hover {
    border-bottom-color: #2271b1;
}

.mgc-compliance-wrapper a:focus {
    box-shadow: 0 0 0 2px #2271b1;
    outline: 2px solid transparent;
}

/* Optional: submit button styling for disabled state */
#submit.mgc-disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ARCO Rights Portal */
.mgc-arco-container, .mgc-arco-dashboard {
    background: #fff;
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 20px 0;
}

.mgc-arco-table th {
    font-weight: 600;
    color: #444;
}

.mgc-arco-table td {
    color: #555;
    font-size: 0.9em;
}

.mgc-success {
    background: #edfaef;
    border-left: 4px solid #46b450;
    padding: 12px 15px;
    margin-bottom: 20px;
    color: #255b29;
}

.mgc-error {
    background: #fcf0f1;
    border-left: 4px solid #d63638;
    padding: 12px 15px;
    margin-bottom: 20px;
    color: #941b1e;
}

.mgc-arco-container form p {
    margin-bottom: 15px;
}

.mgc-arco-container label {
    font-weight: 600;
    display: inline-block;
    margin-bottom: 5px;
}

.mgc-arco-container input[type="email"] {
    width: 100%;
    max-width: 400px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}