.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #ffffff;
    padding: 15px 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    font-family: Arial, sans-serif;
    border-top: 3px solid #4a90e2;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.cookie-accept {
    background: #4a90e2;
    color: white;
}

.cookie-accept:hover {
    background: #357abd;
    transform: translateY(-2px);
}

.cookie-decline {
    background: #6c757d;
    color: white;
}

.cookie-decline:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}

/* Animations */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner {
    animation: slideUp 0.5s ease-out;
}

/* Toast-Benachrichtigung */
@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.cookie-toast {
    animation: slideUp 0.3s ease-out !important;
}

/* Cookie-Settings Link im Footer */
.cookie-settings-link {
    cursor: pointer;
    color: #6c757d;
    text-decoration: none;
    font-size: 13px;
}

.cookie-settings-link:hover {
    color: #4a90e2;
    text-decoration: underline;
}

/* Optional: Dark Mode für Banner */
@media (prefers-color-scheme: dark) {
    .cookie-banner {
        background: #1a1a2e;
        border-top-color: #4a90e2;
    }
}

/* Bessere Mobile-Darstellung */
@media (max-width: 768px) {
    .cookie-banner-text p {
        font-size: 13px;
    }
    
    .cookie-btn {
        padding: 8px 16px;
        font-size: 13px;
        min-width: 100px;
    }
}