.cookie-banner {
    position: fixed;
    bottom: -100%; /* Startet versteckt */
    left: 0;
    width: 100%;
    background-color: var(--bg-card, #ffffff);
    color: var(--text-main, #333);
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    border-top: 1px solid var(--border, #ddd);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 10000;
    transition: bottom 0.5s ease-in-out;
    font-size: 0.9rem;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 800px;
    text-align: center;
}

.cookie-btn {
    background-color: var(--primary, #3182ce);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
    white-space: nowrap;
}

.cookie-btn:hover {
    background-color: var(--primary-hover, #2b6cb0);
}

.cookie-link {
    color: var(--text-muted, #718096);
    text-decoration: underline;
    margin-left: 5px;
}