<style>
  #breadcrumb {
    list-style: none;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    font-size: 0.875em;
    white-space: nowrap; /* ✅ Prevents line breaks */
  }

  #breadcrumb li {
    display: inline-flex;
    align-items: center;
    color: #333;
    font-weight: 600;
  }

  .breadcrumb-separator {
    padding: 0 8px;
    color: #666;
    font-weight: bold;
  }

  #breadcrumb a {
    text-decoration: none;
    color: #666;
  }

  #breadcrumb a:hover {
    text-decoration: underline;
    color: #003580;
  }
</style>

