   .breadcrumb {
  /* background: #ffffff; */
  border-bottom: 2px solid #e9ecef;
  border-radius:2px;
  padding: 8px 15px;
  margin:2px 0;
  font-size: 15px;
  /* box-shadow: 0 2px 5px rgba(0,0,0,0.05); */
  
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›"; /* ayırıcı oku */
  color: #d9534f; /* kırmızımsı ayırıcı */
  font-weight: bold;
}

.breadcrumb a {
  color: #007bff; /* link rengi (mavi) */
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #0056b3; /* hover rengi */
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #d9534f; /* aktif sayfa kırmızı */
  font-weight: 600;
}