.container-header {
  width: 95%;
  margin: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.logo-header {
  width: 40px;
  height: 40px;
}

.container-balance {
  display: flex;
  align-items: center;
  background-color: transparent;
  border-radius: 20px;
  border: 1px solid #36363b;
  padding: 2px;
  gap: 10px;
}

.container-menu-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon {
  background-color: #36363b;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.user-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.user-name {
  text-align: left;
  font: normal normal normal 11px/16px "Roboto", sans-serif;
  letter-spacing: 0.44px;
  color: #ffffff;
}
.user-balance {
  font: normal normal 700 12px/16px "Roboto", sans-serif;
  letter-spacing: 0.36px;
  color: #27ae3e;
}

.btn-menu {
  display: flex;
  border-radius: 50%;
  padding: 10px;
  justify-content: center;
  align-items: center;
  background: #36363b 0% 0% no-repeat padding-box;
  width: 15px;
  height: 15px;
  cursor: pointer;
}
.dropdown-menu {
  z-index: 1000;
  flex-direction: column;
  background-color: #333;
  border-radius: 10px;
  position: absolute;
  top: 60px;
  right: auto;
  width: 200px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.menu-item {
  display: flex;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #444;
  cursor: pointer;
  text-decoration: none;
}
.menu-item:hover {
  background: #36363b;
}
.first-item {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.last-item {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.first-item:hover {
  background: #36363b;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.last-item:hover {
  background: #36363b;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.menu-item:last-child {
  border-bottom: none;
}
.menu-item img {
  margin-right: 10px;
  width: 18px;
  height: 18px;
}
.menu-item span {
  text-align: left;
  font: normal normal normal 12px/16px "Roboto", sans-serif;
  letter-spacing: 0.48px;
  color: #ffffff;
}
