@import 'https://classless.de/classless.css'; /* main classless CSS library */

dialog {
  border: none;
  border-radius: 6px;
  padding: 1.5rem;
  max-width: 40rem;
  margin: auto;
  background: var(--background, #fff);
  color: var(--text, #222);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.25);
  font: inherit;
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.4);
}

dialog header {
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 1.1em;
}

dialog footer {
  margin-top: 1.5rem;
  text-align: right;
}

dialog button {
  margin-left: 0.5rem;
}