.breadcrumb-container {
  padding: 20px 16px;
  background: linear-gradient(to left, #fdfdfd, #f5f5f5, #efefef);
  border-radius: 14px;
  margin-bottom: 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  font-family: 'Cairo', 'Segoe UI', sans-serif;
  direction: rtl;
  overflow-x: auto;
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #666;
  font-weight: 500;
  white-space: nowrap;
}

.breadcrumb-item a {
  text-decoration: none;
  color: #111;
  font-weight: 700;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #007bff;
}

.breadcrumb-separator {
  margin: 0 8px;
  color: #ccc;
  font-size: 1.2rem;
  transform: translateY(1px);
}

.breadcrumb-item.current {
  color: #999;
  font-weight: 600;
}

/* Responsive scroll for small screens */
@media (max-width: 576px) {
  .breadcrumb-container {
    padding: 12px;
    font-size: 0.95rem;
  }
  .breadcrumb-separator {
    margin: 0 6px;
  }
}
