.action-menu-container {
  position: absolute;
  right: -9px;
  width: 80px;
  margin-top: 10px;
  background: white;
  border-radius: 10px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  font-size: 14px;
  border: 0.4px solid rgba(208, 208, 208, 1);
  box-shadow: 0px 0.5px 5px 0px rgba(0, 0, 0, 0.12);
  
}

.action-menu-arrow {
  position: absolute;
  top: -6px;
  left: 51px;
  width: 12px;
  height: 12px;
  background: white;
  transform: rotate(45deg);
  box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.04);
  z-index: -1;
  border-top: 0.4px solid rgba(208, 208, 208, 1);
  border-left: 0.4px solid rgba(208, 208, 208, 1);
}

.action-menu-item {
  display: block;
  width: 100%;
  padding: 10px 16px;
  text-align: left;
  color: #222;
  background-color: rgba(255, 255, 255, 1);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  overflow: hidden;
  text-overflow: ellipsis;
}

.action-menu-item:hover {
  background-color: rgba(236, 236, 236, 1);
}

.action-menu-item:first-of-type {
	margin-top: 6px;
}

.action-menu-item:last-of-type {
	margin-bottom: 6px;
}
