.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 99999;

    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 12px;

    padding: 20px;

    box-shadow: 0 8px 30px rgba(0,0,0,0.18);

    max-width: 720px;
    margin: 0 auto;

    font-size: 15px;
    color: #222222;
}

.cookie-banner p {
    margin-bottom: 15px;
    line-height: 1.5;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-banner button,
.cookie-settings {
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}


/* Akzeptieren */
.cookie-accept {
    background: #1f7a3f;
    color: white;
}

.cookie-accept:hover {
    background: #176030;
}


/* Ablehnen */
.cookie-decline {
    background: #666666;
    color: white;
}

.cookie-decline:hover {
    background: #444444;
}


/* Datenschutz-Link */
.cookie-settings {
    background: #eeeeee;
    color: #222222;
}

.cookie-settings:hover {
    background: #dddddd;
}


/* Google Maps Platzhalter */
.map-placeholder {
    background: #f5f5f5;
    border: 1px solid #dddddd;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin: 20px 0;
}

.map-placeholder h3 {
    margin-bottom: 15px;
}

.map-placeholder p {
    margin-bottom: 20px;
}

.map-placeholder button {
    background: #1f7a3f;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
}

.map-placeholder button:hover {
    background: #176030;
}


/* Mobile */
@media (max-width: 768px) {
    .cookie-banner {

        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 15px;
        font-size: 14px;
    }

    .cookie-banner-buttons {
        flex-direction: column;
    }

    .cookie-banner button,
    .cookie-settings {
        width: 100%;
        text-align: center;
    }

}