.account-dangerZone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 1rem 0;
}

.account-dangerZone-heading {
  font-weight: 600;
  font-size: 16px;
  color: crimson;
}

.account-dangerZone-info,
.account-dangerZone-disclaimer {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: #7e7e7e;
}

.account-dangerZone-btn {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 6px 10px;
  gap: 10px;
  border-radius: 6px;
  width: fit-content;
  background: none;
  border: 1.5px solid #444;
  color: #444;
  font-weight: 500;
  font-size: 14px;
  transition: all ease 300ms;
}

.account-dangerZone-btn:hover {
  background: rgb(68, 68, 68, 0.05);
}

.account-dangerZone-btn:disabled {
  background: none;
}

.account-dangerZone-btn.delete {
  border: 1.5px solid crimson;
  color: crimson;
}

.account-dangerZone-btn.delete:hover {
  background: rgb(220, 20, 60, 0.05);
}

.account-dangerZone-dialog {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  gap: 1rem;
  background: var(--background);
  z-index: 1;
  padding: 1rem;
  box-shadow: 0px 8px 15px rgb(0 0 0 / 16%), 0px 0px 0px 1px rgb(0 0 0 / 16%);
  border-radius: 8px;
  width: fit-content;
  min-width: 300px;
  min-height: 165px;
  border: none;
}

.account-dangerZone-dialog:not([open]) {
  display: none;
}

.account-dangerZone-disclaimer {
  text-align: center;
}

.account-dangerZone-dialog-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.account-dangerZone-dialog-container::after {
  margin: auto;
  content: '';
  display: flex;
  align-items: center;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px solid #ddd;
  border-top-color: #333;
  animation: spin 1s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.account-dangerZone-dialog[data-working='true'] .account-dangerZone-option {
  display: none;
}

.account-dangerZone-dialog:not([data-working='true']) .account-dangerZone-dialog-container::after {
  display: none;
}

.account-dangerZone-dialog-issue {
  color: crimson;
  font-size: 12px;
}

.account-dangerZone-dialog-issue {
  font-size: 12px;
  height: 16px;
  color: crimson;
  transition: all ease 600ms;
}

.account-dangerZone-dialog-issue:empty {
  opacity: 0;
  height: 0;
  filter: blur(4px);
}
