/* =============================================
   Breadcrumb Styles
   ============================================= */
.breadcrumb-wrapper {
  background: #f8f9fa;
  padding: 14px 0;
  border-bottom: 1px solid rgba(25, 53, 45, 0.08);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

/* Override Bootstrap breadcrumb divider */
.breadcrumb-list .breadcrumb-item + .breadcrumb-item::before {
  content: none !important;
  display: none !important;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #6c757d;
  line-height: 1.4;
}

.breadcrumb-item a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #0c4177;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
  color: #1b5a9e;
}

.breadcrumb-item a svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Arrow separator */
.breadcrumb-item:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid #9ca3af;
  border-top: 1.5px solid #9ca3af;
  transform: rotate(45deg);
  margin-left: 10px;
}

.breadcrumb-item.active {
  color: #0c4177;
  font-weight: 500;
}

@media (max-width: 768px) {
  .breadcrumb-wrapper {
    padding: 12px 0;
  }

  .breadcrumb-item {
    font-size: 13px;
  }

  .breadcrumb-item a svg {
    width: 16px;
    height: 16px;
  }
}
