
/* Custom breadcrumbs styling */
.breadcrumbs-custom .breadcrumb {
  background-color: #ff0000;
  padding: 12px 20px;
  border-radius: 6px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  color: #333;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.breadcrumbs-custom .breadcrumb a {
  color: #2a69b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-custom .breadcrumb a:hover {
  color: #1a4f91;
  text-decoration: underline;
}

.breadcrumbs-custom .breadcrumb > span {
  color: #6c757d;
}
