/* Cookie-Banner Stile */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.cookie-content {
    max-width: 900px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #333;
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: #003056;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* Isolierte Button-Stile für den Banner, um Konflikte zu vermeiden */
#cookie-banner button {
    cursor: pointer;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: background-color 0.2s;
}

#cookie-banner .btn-primary {
    background-color: #003056;
    color: white;
}

#cookie-banner .btn-primary:hover {
    background-color: #004a80;
}

#cookie-banner .btn-secondary {
    background-color: #e0e0e0;
    color: #333;
}

#cookie-banner .btn-secondary:hover {
    background-color: #d0d0d0;
}

@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }
    .cookie-buttons {
        flex-direction: column;
    }
    #cookie-banner .btn-primary, #cookie-banner .btn-secondary {
        width: 100%;
    }
}
