.tsa-consent {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 9000;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .25s ease, transform .25s ease;
    pointer-events: none;
}
.tsa-consent.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.tsa-consent__inner {
    width: 100%;
    max-width: 760px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    box-shadow: 0 18px 44px -16px rgba(20, 30, 35, .35);
    padding: 1.1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .9rem;
}
.tsa-consent__title {
    margin: 0 0 .25rem;
    font-size: .95rem;
    font-weight: 700;
    color: #1f2937;
}
.tsa-consent__body {
    margin: 0;
    font-size: .82rem;
    line-height: 1.55;
    color: #5b6670;
}
.tsa-consent__link { color: #244E56; text-decoration: underline; }
.tsa-consent__link:hover { color: #1B3E46; }
.tsa-consent__actions {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
}
.tsa-consent__btn {
    flex: 1 1 auto;
    min-width: 140px;
    padding: .7rem 1.1rem;
    border-radius: .65rem;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}
/* Equal prominence (DSGVO/DSK: no nudging) — both buttons identical weight,
   distinguished by label only. */
.tsa-consent__btn--primary,
.tsa-consent__btn--ghost {
    background: #ffffff;
    color: #244E56;
    border-color: #244E56;
}
.tsa-consent__btn--primary:hover,
.tsa-consent__btn--ghost:hover {
    background: #244E56;
    color: #ffffff;
}

@media (min-width: 720px) {
    .tsa-consent__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .tsa-consent__text { flex: 1; }
    .tsa-consent__actions { flex: 0 0 auto; }
    .tsa-consent__btn { flex: 0 0 auto; }
}
