.result-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  display: grid;
  place-items: center;
  padding: 16px;
  z-index: 100;
}

.result-modal-backdrop[hidden] {
  display: none;
}

.result-modal {
  width: 100%;
  max-width: 360px;
  padding: 32px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.result-modal-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.result-modal-icon-wrap--success {
  background: #e6f9f0;
  color: #12b76a;
}

.result-modal-icon-wrap--error {
  background: #fef3f2;
  color: #b42318;
}

.result-modal-icon {
  width: 32px;
  height: 32px;
  display: block;
}

.result-modal-title {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 700;
}

.result-modal-message {
  margin: 0 0 24px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

.result-modal-close {
  margin: 0;
  width: 100%;
}
