#collab-button {
    font-family: Rubik;
    font-size: 12px;
    font-weight: 500;
    padding: 8px 8px;
    background-color: #82a3b8;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 0px;
}

#collab-button:hover {
background-color: #6192b1;
}
  
#collab_users{
    display: none;
    position: fixed;
    top: 190px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    user-select: none;
}

#share-collab-button{
    font-family: Rubik;
    font-size: 12px;
    font-weight: 500;
    padding: 8px 8px;
    background-color: #0677BB;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 0px;
}
#share-collab-button:hover {
    background-color: #055c92;
}

#user-list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.user-entry {
  font-family: Rubik;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  color: white;
  align-items: center;
  justify-content: center; /* Optional: center text horizontally too */

  gap: 10px;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 14px;
  max-width: 150px;
  overflow: hidden;
  height: 15px;
}

.user-entry.more-users {
  background: #eb4949;
  font-style: italic;
}

.remote-cursor {
  transition: transform 0.05s linear;
  white-space: nowrap;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}