#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #f0f8e0;
    color: #333;
    padding: 20px;
    border-radius: 10px;
    z-index: 9999;
    display: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

#cookie-banner h3 {
    margin-top: 0;
    font-size: 18px;
    color: #4a6b50;
}

#cookie-banner p {
    margin-bottom: 15px;
    line-height: 1.5;
}

#cookie-banner .button-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

#cookie-banner button {
    background-color: #607D8B;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    max-width: 320px;
    width: 100%;
    box-sizing: border-box;
    margin:0 auto;
}

#cookie-banner button:hover {
    background-color: #546E7A;
}

#cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(100, 100, 100, 0.5); /* oder dein Wunschwert */
    z-index: 9998; /* Unterhalb vom Banner */
    display: none;
}

#cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(100, 100, 100, 0.5);
    z-index: 9998;
    display: none;
    pointer-events: none; /* ← wichtig für Klickfreiheit */
}


#cookie-banner a.legal-link {
    color: #333;
    text-decoration: underline;
    position: relative;
    z-index: 10000; /* über Overlay */
    font-size:0.75em;
    margin-top:10px;
}


