/* ==========================================================================
   ps-consent.css – Analyse-Hinweis direkt auf der Konfiguratorseite (0.22.1)
   Gilt für BEIDE Konfiguratoren (geführt + Experte) und ist bewusst
   eigenständig (keine Abhängigkeit von ps-guided-/ps-configurator-Variablen).
   Kompakte Karte im Seitenfluss – kein Overlay, keine Blockade, beide
   Entscheidungen gleichwertig sichtbar, klarer Tastaturfokus.
   ========================================================================== */

.ps-consent-card {
    box-sizing: border-box;
    max-width: 700px;
    margin: 0 auto 18px;
    padding: 16px 18px;
    background: #f4f9f7;
    border: 1px solid #cfe0d9;
    border-left: 4px solid #1f6f5c;
    border-radius: 10px;
    color: #162420;
    font-size: 14px;
    line-height: 1.5;
}
.ps-consent-card * { box-sizing: border-box; }

.ps-consent-titel {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
    color: #162420;
}
.ps-consent-text { margin: 0 0 10px; }
.ps-consent-status { margin: 0 0 10px; font-weight: 600; color: #1f6f5c; }

.ps-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.ps-consent-btn {
    font: inherit;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 8px;
    cursor: pointer;
    border: 1.5px solid #1f6f5c;
}
.ps-consent-ok { background: #1f6f5c; color: #fff; }
.ps-consent-ok:hover { background: #185a4b; }
/* Ablehnen gleichwertig sichtbar – bewusst KEIN versteckter Textlink. */
.ps-consent-nein { background: #fff; color: #1f6f5c; }
.ps-consent-nein:hover { background: #eaf3f0; }

.ps-consent-mehr,
.ps-consent-settingslink {
    background: none;
    border: 0;
    padding: 2px 0;
    font: inherit;
    font-size: 13px;
    color: #1f6f5c;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.ps-consent-mehr:hover,
.ps-consent-settingslink:hover { color: #162420; }

.ps-consent-mehrtext {
    margin-top: 10px;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid #cfe0d9;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.55;
}
.ps-consent-mehrtext[hidden] { display: none; }

/* Dezenter Einstiegspunkt unter dem Konfigurator. */
.ps-consent-settingslink {
    display: block;
    margin: 14px auto 0;
    opacity: .85;
}

/* Sichtbarer Tastaturfokus auf allen Bedienelementen. */
.ps-consent-btn:focus-visible,
.ps-consent-mehr:focus-visible,
.ps-consent-settingslink:focus-visible {
    outline: 3px solid #7fb8a7;
    outline-offset: 2px;
    border-radius: 6px;
}

/* Mobil: Buttons untereinander, volle Breite – nichts wird abgeschnitten. */
@media (max-width: 560px) {
    .ps-consent-card { margin-left: 10px; margin-right: 10px; }
    .ps-consent-actions { flex-direction: column; align-items: stretch; }
    .ps-consent-btn { width: 100%; text-align: center; }
    .ps-consent-mehr { align-self: flex-start; }
}
