/* Application styles */

/* Native dialog styling */
dialog {
  border: none;
  padding: 0;
  margin: auto;
  max-width: 90vw;
  max-height: 90vh;
  background: transparent;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}
