/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.daum-transfer-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  min-height: 100vh;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
}

/* ── Modal shell ────────────────────────────────────────────────── */
.daum-transfer-modal {
  position: relative;
  width: 800px;
  height: 543px;
  background: #ffffff;
  overflow: hidden;
}

/* ── Close button ───────────────────────────────────────────────── */
.daum-transfer-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.daum-transfer-modal-close img {
  width: 24px;
  height: 24px;
  display: block;
}

/* ── Title ──────────────────────────────────────────────────────── */
.daum-transfer-modal-title {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 680px;
  font-family: 'Pretendard', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.6px;
  color: #111111;
  text-align: center;
  white-space: nowrap;
}

/* ── Content box ────────────────────────────────────────────────── */
.daum-transfer-modal-body {
  position: absolute;
  top: 119px;
  left: 30px;
  width: 740px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px;
  background: #f8f8f8;
}

/* ── Main text block ────────────────────────────────────────────── */
.daum-transfer-modal-text-main {
  width: 100%;
  font-family: 'Pretendard', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  letter-spacing: -0.4px;
  color: #111111;
}

.daum-transfer-modal-text-main p {
  margin: 0;
  line-height: 1.6;
}

.daum-transfer-modal-text-main strong {
  font-weight: 700;
}

/* ── Date / highlight text block ────────────────────────────────── */
.daum-transfer-modal-text-dates {
  width: 100%;
  font-family: 'Pretendard', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  letter-spacing: -0.4px;
  color: #a78d66;
}

.daum-transfer-modal-text-dates p {
  margin: 0;
  line-height: 1.6;
}

/* ── Button row ─────────────────────────────────────────────────── */
.daum-transfer-modal-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.daum-transfer-btn-notice {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 48px;
  background: #000000;
  color: #ffffff;
  font-family: 'Pretendard', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.32px;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}

/* ── "오늘 하루 보지 않기" ──────────────────────────────────────── */
.daum-transfer-no-show-label {
  position: absolute;
  left: 50%;
  top: 511px;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: 'Pretendard', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.28px;
  color: #000000;
  white-space: nowrap;
  user-select: none;
}

.daum-transfer-no-show-checkbox {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: #ffffff;
  border: 1px solid #d2d6e0;
  border-radius: 4px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/* hide real input if used */
.daum-transfer-no-show-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* ── Transfer apply button (modal-2) ───────────────────────────── */
.daum-transfer-btn-transfer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 48px;
  background: #a78d66;
  color: #fafafa;
  font-family: 'Pretendard', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.4px;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}

.daum-transfer-no-show-label input[type="checkbox"]:checked + .daum-transfer-no-show-checkbox {
  background: #000;
  border-color: #000;
}
