/* Dialog (uiDialog) */
.dlg-wrap{position:fixed;inset:0;z-index:10000;display:none}
.dlg-wrap.is-open{display:block}
.dlg-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.45)}
.dlg{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:360px;max-width:90vw;background:#fff;border-radius:12px;box-shadow:0 12px 28px rgba(0,0,0,.2);overflow:hidden}
.dlg-hd{padding:18px 20px 8px;font-weight:800;color:#111;text-align:center}
.dlg-bd{padding:0 20px 16px;color:#7a7a7a;text-align:center}
.dlg-ft{border-top:1px solid #eee;display:flex}
.dlg-btn {
  /* 버튼 리셋 */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  background: none;
  box-shadow: none;
  outline: none;
  /* 스타일 적용 */
  flex: 1;
  height: 44px;
  background: #fff;
  cursor: pointer;
}
.dlg-btn.ok{font-weight:700;}
.dlg-btn.cancel{color:#555}
/* 포커스 효과 제거 */
.dlg-btn:focus {
  outline: none;
  box-shadow: none;
}

.dlg-input{width:100%;height:40px;border:1px solid #e5e7eb;border-radius:6px;padding:0 12px;font-size:14px;background:#fff}