#userPanel {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 15px;
}

#userName {
  font-weight: bold;
  color: #fff;
  padding-right: 10px;
  font-size: 16px;
  user-select: none;
}

#logoutBtn {
  display: inline-block;
  background-color: #ff5555;
  border: none;
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(255, 85, 85, 0.5);
  transition: background-color 0.3s ease;
  user-select: none;
  margin-right: 10px;
}

#logoutBtn:hover {
  background-color: #ff2222;
}
