.toolbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.danger-select {
  border: 1px solid #efb3b0;
  background: #fff0ef;
  color: var(--red-dark);
  border-radius: 10px;
  padding: 11px 16px;
  font-weight: 800;
}

.danger-select:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.select-cell {
  width: 44px;
  padding-left: 14px;
  padding-right: 8px;
}

.select-cell input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--red);
}

.password-confirm {
  padding: 24px;
}

.password-confirm h3 {
  margin: 0 0 8px;
}

.password-confirm p {
  color: var(--muted);
  line-height: 1.45;
}

.compact-actions {
  min-width: 92px;
  align-items: center;
  flex-wrap: nowrap;
}

.more-actions-button {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid #d7d7d7;
  border-radius: 8px;
  background: #f2f2f2;
  color: var(--graphite);
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
}

.more-actions-button:hover {
  border-color: var(--red);
  background: #ffe8e6;
  color: var(--red-dark);
}

.row-action-menu {
  position: fixed;
  width: 180px;
  margin: 0;
  padding: 7px;
  border: 1px solid #ddd;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 14px 34px #0003;
}

.row-action-menu::backdrop {
  background: transparent;
}

.row-action-menu .action {
  display: block;
  width: 100%;
  margin: 2px 0;
  padding: 10px 12px;
  text-align: left;
}

@media (max-width: 760px) {
  .toolbar-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }
}
