/* --------------------------------------------------------------------------
   RS-IN ERP 공통 팝업/모달 스타일
   - 팝업 내용이 잘리거나 가로 스크롤이 생기는 문제를 줄입니다.
-------------------------------------------------------------------------- */

.modal,
.dialog,
.dialog-panel,
.record-dialog,
.rs-modal {
  box-sizing: border-box;
  max-width: min(1180px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);
}

.modal-body,
.dialog-body,
.record-dialog-body,
.rs-modal-body {
  max-width: 100%;
  overflow: auto;
}

.modal-footer,
.dialog-footer,
.record-dialog-footer,
.rs-modal-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.modal-footer button,
.dialog-footer button,
.record-dialog-footer button,
.rs-modal-footer button {
  min-width: 76px;
  height: 38px;
}
