.pdf-dialog {
  width: min(1120px,96vw);
  height: min(850px,92vh);
  padding: 0;
  border: 0;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
}

.pdf-dialog::backdrop {
  background: rgba(5,22,43,.6);
}

.pdf-modal {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
}

.pdf-modal header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.pdf-modal header h2 {
  font-size: 17px;
  margin: 2px 0;
}

.pdf-modal header>div:last-child {
  display: flex;
  gap: 8px;
}

.pdf-modal iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #33404f;
}
