.breadcrumb {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    font-size: 1.5rem;
    padding: 10px 0;
  }
  
  .breadcrumb a:visited
  {
    color: #555e64;
  }
  
  .breadcrumb li::after {
    content: ">";
    margin: 0 0.5rem;
    color: #999;
  }
  
  .breadcrumb li:last-child::after {
    content: ""; /* nincs nyíl az utolsó után */
  }
  
  .breadcrumb a {
    
    color: #273F4F;
    text-decoration: underline;
  
  }

  .breadcrumbBG
  {
    background-color: white;
  }