.topbar {
  position: fixed;
  display: flex;
  z-index: 800;

  align-items: center;

  flex-direction: row;

  top: 0;
  right: 160px;
  left: 0;

  width: calc(100% - 160px);
  height: 60px;

  background: white;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
}

.topbar-inner {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: space-between;

  width: 100%;
  height: 100%;

  padding: 0 20px;
}

.topbar-userside {
  position: relative;
  display: flex;
  gap: 5px;

  align-items: center;
  justify-content: flex-start;

  flex-direction: row;

  height: 100%;
}


.topbar-user {
  position: relative;
  display: flex;
  gap: 10px;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  height: 100%;

  padding: 0 20px;
  padding-top: 3px;

  text-decoration: none;

  font-size: 14px;
  font-weight: 500;

  color: black;

  transition: 0.3s all ease-out;
}
.topbar-user:hover {
  background: rgba(0, 0, 0, 0.05);
}

.topbar-action {
  position: relative;
  display: flex;
  gap: 10px;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  height: 100%;

  padding: 0 20px;

  text-decoration: none;

  font-size: 16px;
  font-weight: 500;

  color: black;

  background: rgba(0, 0, 0, 0.05);
  opacity: 0.5;
  transition: 0.3s all ease-out;
}
.topbar-action:hover {
  opacity: 1;
}
