

.dialogContent {
  position: fixed;
  width: max-content;
  z-index: 1200;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--background-color);
}

.dialogOverlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: color-mix(in srgb, var(--overlay-color), transparent 25%);
    z-index: 1100;
    opacity: 1;
    transition: all .5s ease-in-out;
}

.dialogInnerContent {
    max-height: 90vh;
    overflow-y: auto;
    max-width: min(90vw, 800px);
    min-width: min(90vw, 400px);
}
