body.lgpd-consent-open {
    overflow: hidden;
}

.lgpd-consent-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
}

.lgpd-consent-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.lgpd-consent-content {
    position: relative;
    background: #ffffff;
    max-width: min(640px, 90vw);
    max-height: min(90vh, 640px);
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.lgpd-consent-header {
    padding: 24px 24px 12px;
    border-bottom: 1px solid #f0f0f0;
}

.lgpd-consent-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lgpd-consent-message p {
    margin: 0 0 12px;
}

.lgpd-consent-links-list {
    padding-left: 18px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lgpd-consent-links-list a {
    color: #0073aa;
    text-decoration: underline;
}

.lgpd-consent-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: 600;
}

.lgpd-consent-checkbox input[type="checkbox"] {
    margin-top: 4px;
}

.lgpd-consent-error {
    color: #d63638;
    font-weight: 600;
    min-height: 20px;
}

.lgpd-consent-footer {
    padding: 16px 24px 24px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: flex-end;
}

.lgpd-consent-footer .button {
    padding: 12px 24px;
    font-size: 16px;
}

@media (max-width: 600px) {
    .lgpd-consent-content {
        border-radius: 0;
        max-width: 100vw;
        max-height: 100vh;
    }

    .lgpd-consent-header,
    .lgpd-consent-body,
    .lgpd-consent-footer {
        padding: 16px;
    }
}
.lgpd-consent-footer .button.is-loading {
    opacity: 0.7;
    pointer-events: none;
}

