dialog {
  border: none;
  padding: 2rem;
  position: fixed !important;
  inset: 0;
  z-index: 999999;
  max-width: 700px;
  width: 90%;
  color: var(--accent-color);
  .modal-content {
    display: flex;
    flex-direction: column;

    h2 {
      padding-bottom: 0.25em;
      border-bottom: 1px solid var(--surface-color);
    }
    header {
        position: relative;
      .close-btn {
        position: absolute;
        top: 0;
        right: 0;
        background: none;
        border: none;
        color: var(--accent-color);
        font-size: 1.5rem;
        cursor: pointer;
      }
    }
  }
}

dialog::backdrop {
    background: var(--overlay-color);
    /* opacity: 0.75; */
    backdrop-filter: blur(18px);
    width: 100%;
    height: 100%;
  }

.modal-header,
.modal-footer {
  padding: 1rem;
}

.modal-body {
  padding: 1rem;
}
