.my-btn:disabled {
  pointer-events: none;
}

.my-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 48px;
  max-height: 48px;
  justify-content: center;
  border-radius: 6px;
  outline: none;
  border: none;
  padding: 13px 16px;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0;
  font-weight: 400;
  transition: 0.2s ease;
  text-wrap: nowrap;
  min-width: 80px;
}

.primary-btn {
  background-color: var(--primary-active);
  color: var(--grey-white);
}

.primary-btn:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 4px 12px 0 var(--primary-active-20);
}

.primary-btn:disabled {
  background-color: var(--primary-active);
  opacity: 0.5;
}

.primary-light-btn {
  background-color: var(--primary-light);
  color: var(--primary-active);
  border: 1px solid var(--primary-active-20);
}

.primary-light-btn:hover {
  background-color: var(--primary-active);
  color: var(--grey-white);
}

.primary-light-btn:disabled {
  opacity: 0.5;
}

.danger-outline-btn {
  background-color: var(--danger-light);
  color: var(--danger-dark);
}

.danger-outline-btn:hover {
  background-color: var(--danger-dark);
  color: var(--grey-white);
  box-shadow: var(--shadow-danger);
}

.default-btn {
  background-color: var(--grey-white);
  border: 1px solid var(--grey-300);
  color: var(--grey-700);
}

.default-btn:hover {
  box-shadow: var(--shadow-light);
}

.default-btn:disabled {
  border: 1px solid var(--grey-200);
  color: var(--grey-500);
}

.table-default-btn {
  background: var(--primary-light);
  color: var(--text-headline-title);
  cursor: pointer;
  font-weight: 500;
}

.table-default-btn:hover {
  background-color: var(--primary-active);
  color: var(--grey-white);
  box-shadow: 0 4px 12px 0 var(--primary-active-20);
}

.table-action-btn {
  padding: 9px 10px;
  gap: 4px;
  border-radius: 6px;
  border: none;
  background: var(--grey-100);
  color: var(--primary-active);
  cursor: pointer;
}

.action-btn {
  padding: 0;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 6px;
}

.action-btn::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-color: var(--grey-600);
  mask: url(/images/table/dots-horizontal.svg) 0% 0% / cover no-repeat;
  transition: background-color 0.2s ease;
}

.action-btn:hover {
  background-color: var(--grey-100);
}

.action-btn:hover::after {
  background-color: var(--primary-active);
  transition: background-color 0.2s ease;
}

.add-btn::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-color: currentcolor;
  mask: url(/images/icons/square-plus.svg) 0% 0% / cover no-repeat;
}

.dash-button {
  color: var(--primary-active);
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px dashed var(--primary-active);
}

.dash-button:hover {
  color: var(--primary-dark);
  transition: color 0.2s ease;
  border-bottom: 1px dashed var(--primary-dark);
}

.table-menu-container {
  margin-left: auto;
  justify-content: end;
  display: flex;
  width: fit-content;
}

.table-menu {
  display: flex;
  flex-direction: column;
  list-style: none;
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--grey-white);
  box-shadow: var(--shadow-dropdown);
  width: 150px;
  max-width: 150px;
  padding: 5px 0;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  z-index: 1000;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.table-menu.open {
  pointer-events: auto;
}

.table-menu-item {
  list-style: none;
  cursor: pointer;
}

.table-menu-item:hover {
  background-color: var(--grey-100);
}

.table-menu-item a,
.table-menu-item button {
  color: var(--grey-700);
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  width: 100%;
  font-size: 13px;
  line-height: 150%;
  letter-spacing: 0;
  font-weight: 500;
}

.view-btn::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: currentColor;
  mask: url(/images/password/eye.svg) no-repeat;
  mask-size: cover;
}

.pass-btn::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: currentColor;
  mask: url(/images/input/check.svg) no-repeat;
  mask-size: cover;
}

.fail-btn::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: currentColor;
  mask: url(/images/input/cross.svg) no-repeat;
  mask-size: cover;
}

.withdraw-btn::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: currentColor;
  mask: url(/images/table/arrows-circle.svg) no-repeat;
  mask-size: cover;
}

.go-to-btn::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: var(--grey-500);
  mask: url(/images/icons/arrow-right.svg) no-repeat;
  mask-size: cover;
  transition: 0.3s transform;
}

.go-to-btn:hover::after {
  transform: translateX(3px);
  transition: 0.3s transform;
}

.fail-btn {
  color: var(--danger-active) !important;
}

.withdraw-btn {
  color: var(--danger-active) !important;
}
