#top-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background-color: #2c2c2c;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 20px;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  overflow-x: hidden;

  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
}


#links {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
}

#links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
}

#profile-img {
    height: 36px;
    width: 36px;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.2s ease;
    cursor: pointer;
}

#username {
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 1rem;
    color: white;
    display: flex;
    align-items: center;
    height: 100%;
}

#waffle-coins-img {
    height: 36px;
    width: 36px;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.2s ease;
    cursor: pointer;
}

#waffle-coins-holder {
    color: white;
}