body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    background: #f5f5f5;
    color: #020202;
    scroll-behavior: smooth;
  }
header {
    background: #dbcdaa;
    color: #020202;
    padding: 1rem;
    text-align: center;
    font-size: 2rem;
    position: relative;
  }
  
  flags {
    position: absolute;
    right: 1rem;
    top: 1rem;
  }
  flags img {
    height: 2rem;
    width: auto;
  }
  #backArrow {
    position: absolute;
    left: 1rem;
    top: 1rem;
    height: 2.5rem;
    width: auto;
  }

  nav {
    position: sticky;
    top: 0;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    background: #eeeeee;
    padding: 0.5rem;
    
    white-space: nowrap;
    scrollbar-width: none;       /* Firefox */
    -ms-overflow-style: none;    /* IE/Edge */
  }
  nav button {
    background: none;
    border: none;
    white-space: nowrap;
    padding: 0.5rem 1rem;
    margin-right: 1rem;
    font-size: 1rem;
    cursor: pointer;
    ;
    border-bottom: 2px solid transparent;
  }
  nav button.active {
    border-bottom: 2px solid #000000;
    font-weight: bold;
  }
  nav::-webkit-scrollbar {
    display: none;               /* Chrome/Safari */
  }
  nav:hover {
    scrollbar-width: thin;       /* Firefox */
  }
  
  #menu-container{
    padding: 10px;
  }

  .category {
    padding: 1rem;
  }
  .item {
    margin-bottom: 1rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.5rem;
  }
  .item-title {
    display: flex;
    justify-content: space-between;
  }
  .description {
    font-size: 0.9rem;
    color: #666666;
  }

  span {
    white-space: nowrap;
  }