#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #fff;
    color: #333;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 20px;
    z-index: 10000;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    animation: fadeIn 0.5s ease-in-out;
}

#cookie-banner p {
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
}

#cookie-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

/* Akzeptieren-Button – angelehnt an .blue-btn */
#cookie-accept {
    border: 2px solid #5f82d0;
    background: transparent;
    color: #5f82d0;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

#cookie-accept:hover {
    background-color: #5f82d0;
    color: white;
}

/* Nur funktionale Cookies – angelehnt an .hero-btn, aber grau */
#cookie-decline {
    display: inline-block;
    text-decoration: none;
    color: #333;
    border: 2px solid #ccc;
    padding: 14px 28px;
    font-size: 16px;
    background-color: transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

#cookie-decline:hover {
    border: 2px solid #999;
    background-color: #e0e0e0;
}

@media(max-width: 600px) {
    #cookie-banner {
        padding: 16px;
        font-size: 13px;
    }

    #cookie-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    #cookie-buttons button {
        width: 100%;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
