.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1e293b;
    color: #fff;
    padding: 1rem;
    z-index: 9999;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.5s ease-out;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
}

.cookie-banner .btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.cookie-banner .btn-primary {
    background-color: #3b82f6;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 4px;
}

.cookie-banner .btn-primary:hover {
    background-color: #2563eb;
}

.cookie-banner .btn-outline-light {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
}

.cookie-banner .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}