.breadcrumb {
    background-color: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
  }
  
  .breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
  }
  
  .breadcrumb li {
    font-size: 14px;
    color: #6c757d;
  }
  
  .breadcrumb li:not(:last-child)::after {
    content: "/";
    margin: 0 10px;
    color: #6c757d;
  }
  
  .breadcrumb a {
    color: #0b1f47;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .breadcrumb a:hover {
    color: #ffd700;
  }