/* ─── GDPR Information Sheet Page ─── */
/* Extends profile.css + consent.css. Only the amber-themed overrides live here. */

/* Hero — amber accent strip over the dark profile-hero background */
.gdpr-hero {
    background: linear-gradient(135deg, #92400e 0%, #1e293b 70%);
}

/* Status banner — same anatomy as .consent-status-banner */
.gdpr-status-banner {
    margin-top: 22px;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 720px;
    flex-wrap: wrap;
}

.gdpr-status-banner > span { flex: 1; min-width: 200px; }

.gdpr-status-loading {
    background: rgba(217, 119, 6, 0.18);
    color: #fde68a;
}

.gdpr-status-signed {
    background: rgba(16, 185, 129, 0.18);
    color: #d1fae5;
    border-color: rgba(52, 211, 153, 0.4);
}

.gdpr-status-missing {
    background: rgba(217, 119, 6, 0.25);
    color: #fde68a;
    border-color: rgba(251, 191, 36, 0.55);
}

/* Section numbering pill (1., 2., …) */
.gdpr-section-num {
    display: inline-block;
    min-width: 30px;
    padding: 2px 8px;
    margin-right: 6px;
    background: #fef3c7;
    color: #92400e;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.9em;
    text-align: center;
}

/* Highlighted emphasis text (single sentence after a list) */
.gdpr-emphasis {
    margin: 12px 0 0;
    padding: 10px 14px;
    background: #fffbeb;
    border-left: 3px solid #d97706;
    border-radius: 0 8px 8px 0;
    color: #78350f;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.55;
}

/* Note callout box */
.gdpr-note-box {
    margin-top: 14px;
    padding: 14px 18px;
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 10px;
    color: #78350f;
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.6;
}

/* Acknowledgment confirm checkbox — amber accent instead of consent's green */
#section-acknowledgment .check-confirm {
    background: #fffbeb;
    border-color: #fbbf24;
}

#section-acknowledgment .check-confirm:has(input:checked) {
    background: #fef3c7;
    border-color: #d97706;
}

#section-acknowledgment .check-confirm input[type="checkbox"] {
    accent-color: #d97706;
}

/* Submit button hover override */
.btn-save:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}
