/**
 * Cookie-Hinweis Styling
 */

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(33, 37, 41, 0.95);
    color: #fff;
    z-index: 9999;
    padding: 20px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    animation: slideInUp 0.5s ease-out forwards;
}

.cookie-notice-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-notice-content p {
    margin: 0 30px 0 0;
    flex: 1;
    font-size: 14px;
}

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

.cookie-buttons .btn {
    white-space: nowrap;
    min-width: 120px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 14px;
}

@media (max-width: 767px) {
    .cookie-notice-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-notice-content p {
        margin-right: 0;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
}

/* Animation für das Einblenden */
@keyframes slideInUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Animation für das Ausblenden */
@keyframes slideOutDown {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(100%);
    }
}

.cookie-notice.hidden {
    animation: slideOutDown 0.5s ease-out forwards;
} 