/* Report24 Termine – Cookie / Tracking Consent */

.r24-consent-backdrop {
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: rgba(0,0,0,.48);
}

.r24-consent-banner,
.r24-consent-settings {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.r24-consent-banner {
    position: fixed;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    z-index: 99999;

    width: min(760px, calc(100% - 32px));
    padding: 24px;

    background: #fff;
    color: #111;

    border: 1px solid #d7d7d7;
    box-shadow: 0 8px 35px rgba(0,0,0,.28);
}

.r24-consent-banner h2 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.15;
}

.r24-consent-banner p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

.r24-consent-banner a {
    color: #111;
    text-decoration: underline;
}

.r24-consent-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.r24-consent-button {
    min-height: 46px;
    padding: 10px 18px;

    border: 2px solid #111;
    background: #fff;
    color: #111;

    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.r24-consent-button.primary {
    background: #111;
    color: #fff;
    border-color: #111;
}

.r24-consent-button:hover,
.r24-consent-button:focus-visible {
    outline: 3px solid #d1ad45;
    outline-offset: 2px;
}

.r24-consent-settings {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 100000;

    width: min(620px, calc(100% - 32px));
    max-height: calc(100vh - 40px);
    overflow-y: auto;

    background: #fff;
    color: #111;

    padding: 26px;

    border: 1px solid #d7d7d7;
    box-shadow: 0 8px 40px rgba(0,0,0,.35);
}

.r24-consent-settings h2 {
    margin-top: 0;
}

.r24-consent-category {
    padding: 15px 0;
    border-top: 1px solid #ddd;
}

.r24-consent-category:first-of-type {
    border-top: 0;
}

.r24-consent-category label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    font-weight: 700;
}

.r24-consent-category input[type="checkbox"] {
    width: 26px;
    height: 26px;
    flex: 0 0 auto;
}

.r24-consent-category p {
    margin: 8px 0 0;
    line-height: 1.45;
}

.r24-consent-settings-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.r24-cookie-settings-button {
    appearance: none;
    border: 0;
    background: none;
    padding: 0;

    font: inherit;
    color: inherit;
    text-decoration: underline;
    cursor: pointer;
}

.r24-legal-footer {
    padding: 18px 20px;
    text-align: center;
    font-size: 14px;
    line-height: 1.8;
}

.r24-legal-footer a,
.r24-legal-footer button {
    margin: 0 7px;
}

.legal-page {
    max-width: 920px;
}

.legal-page h1 {
    margin-bottom: 24px;
}

.legal-page h2 {
    margin-top: 32px;
}

.legal-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
}

.legal-page th,
.legal-page td {
    padding: 10px;
    border: 1px solid #ddd;
    vertical-align: top;
    text-align: left;
}

@media (max-width: 700px) {

    .r24-consent-banner {
        bottom: 10px;
        width: calc(100% - 20px);
        padding: 18px;
    }

    .r24-consent-banner h2 {
        font-size: 21px;
    }

    .r24-consent-buttons,
    .r24-consent-settings-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .r24-consent-button {
        width: 100%;
    }

    .r24-consent-settings {
        padding: 20px;
    }
}
