.breadcrumb {
    display: flex;
    list-style: none;
    padding: 10px 16px;
    background: #f8f9fa;
    border-radius: 5px;
  }

  .breadcrumb li + li::before {
    content: "›";
    padding: 0 8px;
    color: #6c757d;
  }

  .breadcrumb li a {
    text-decoration: none;
    color: #007bff;
    font-size: 0.9rem;
  }

  .breadcrumb li:last-child a {
    color: #6c757d;
    pointer-events: none;
  }