html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background: #f8f8f8;
    font-family: Verdana, Arial, sans-serif;
    color: #222;
    overflow: hidden; /* kein Scrollen */
}

.cookie-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    max-width: 880px;
    max-height: 92vh;
    overflow-y: auto; /* falls zu klein auf kleineren Geräten */
    padding: 24px 28px;
    background: #fff;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #222;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    box-sizing: border-box;
}

/* Titel */
.cookie-wrapper h3 {
    font-size: 1.6rem;
    margin-bottom: 14px;
    color: #333;
}

/* Untertitel */
.cookie-wrapper h4 {
    font-size: 1.1rem;
    margin-top: 20px;
    color: #444;
}

/* Tabellen-Style */
.cookie-wrapper table.cookie-table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    font-size: 0.9rem;
    background: #fafafa;
    border: 1px solid #ccc;
}

.cookie-wrapper table.cookie-table th,
.cookie-wrapper table.cookie-table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
    vertical-align: top;
}

.cookie-wrapper table.cookie-table th {
    background: #f0f0f0;
    font-weight: bold;
}

.cookie-wrapper em {
    color: #555;
    font-style: italic;
}
