.dialog_root_1c624aa8 {
  margin: 0;
  padding: 0;
  border: 0;
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  position: fixed;
  inset: 0;
  background: transparent;
  display: grid;
  place-items: center;
  opacity: 0;
  transition:
    opacity 0.22s ease,
    overlay 0.22s ease allow-discrete,
    display 0.22s ease allow-discrete;
}

.dialog_root_1c624aa8:focus {
  outline: none;
}

.dialog_root_1c624aa8:open,
.dialog_root_1c624aa8[open] {
  opacity: 1;
}

@starting-style {
  .dialog_root_1c624aa8:open,
  .dialog_root_1c624aa8[open] {
    opacity: 0;
  }
}

.dialog_root_1c624aa8::backdrop {
  background-color: transparent;
  transition:
    background-color 0.22s ease,
    overlay 0.22s ease allow-discrete,
    display 0.22s ease allow-discrete;
}

.dialog_root_1c624aa8:open::backdrop,
.dialog_root_1c624aa8[open]::backdrop {
  background-color: rgb(15 23 42 / 48%);
}

@starting-style {
  .dialog_root_1c624aa8:open::backdrop,
  .dialog_root_1c624aa8[open]::backdrop {
    background-color: transparent;
  }
}

.dialog_content_ee12e897 {
  position: relative;
  width: min(32rem, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  overflow: auto;
  border-radius: var(--frey-radius-lg);
  border: 1px solid var(--frey-color-border-subtle);
  background-color: var(--frey-color-surface);
  color: var(--frey-color-text);
  box-shadow: 0 20px 40px rgb(0 0 0 / 24%);
  padding: 1.5rem; /* Increased padding */
  opacity: 0;
  transform: translateY(0.75rem) scale(0.98);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.dialog_root_1c624aa8:open .dialog_content_ee12e897,
.dialog_root_1c624aa8[open] .dialog_content_ee12e897 {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@starting-style {
  .dialog_root_1c624aa8:open .dialog_content_ee12e897,
  .dialog_root_1c624aa8[open] .dialog_content_ee12e897 {
    opacity: 0;
    transform: translateY(0.75rem) scale(0.98);
  }
}

.dialog_header_c2462f2b {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.dialog_title_89da9452 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--frey-color-text-title);
}

.dialog_close_e5b07e60 {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: transparent;
  color: var(--frey-color-text-muted);
  border-radius: var(--frey-radius-sm);
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease-in-out;
}

.dialog_close_e5b07e60:hover {
  background: var(--frey-color-surface-hover);
  color: var(--frey-color-text);
}

.dialog_close_e5b07e60:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--frey-focus-ring);
}

.dialog_close_icon_93132c68 {
  display: block;
}

.dialog_description_9f437d42 {
  margin: 0.5rem 0 0;
  color: var(--frey-color-text-secondary, #6b7280);
  font-size: 0.875rem;
}

.dialog_body_39a5839d {
  margin-top: 0.875rem;
}

.dialog_footer_c2c1cf36 {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .dialog_root_1c624aa8,
  .dialog_root_1c624aa8::backdrop,
  .dialog_content_ee12e897,
  .dialog_close_e5b07e60 {
    transition: none;
  }

  .dialog_content_ee12e897 {
    transform: none;
  }
}
