.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  z-index: 10000;
  backdrop-filter: blur(3px);

  > div {
    background: var(--color-fg);
    z-index: 10001;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: auto;
    max-height: 80%;
    overflow-y: auto;
  }
}
