#cookie-banner-mobile {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    background: rgba(34, 34, 34, 0.95);
    color: white;
    text-align: center;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
}

.cookie-banner p {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 70px;
    justify-content: center;
    margin-top: 10px;
}

.cookie-banner button {
    color: black;
    border: none;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#cookie-banner-mobile button#accept-cookies-mobile {
    background: #4CAF50; /* grün für akzeptieren */
}

#cookie-banner-mobile button#decline-cookies-mobile {
    background: #ff4d4d; /* rot für ablehnen */
}


.cookie-banner button:hover {
    opacity: 0.8;
}
