/* Cookie-Banner Grunddesign */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 9999;
}

/* Inhalt des Banners */
.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Links */
.cookie-banner a {
    color: #ffd700;
    text-decoration: underline;
}

.cookie-banner a:hover {
    text-decoration: none;
}

/* Button Container */
.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

/* Buttons */
.cookie-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Akzeptieren-Button */
.cookie-btn.accept {
    background: #4caf50;
    color: white;
}

.cookie-btn.accept:hover {
    background: #43a047;
}

/* Ablehnen-Button */
.cookie-btn.reject {
    background: #d32f2f;
    color: white;
}

.cookie-btn.reject:hover {
    background: #c62828;
}

/* Banner einblenden */
.cookie-banner.show {
    display: block;
    opacity: 1;
}
