/* 공통 datepicker (PC·모바일 공통) */
.dp-pop{position:absolute;z-index:1000;background:#fff;border:1px solid var(--line);
  border-radius:12px;box-shadow:0 8px 24px rgba(0,0,0,.12);padding:12px;width:280px;
  font-family:inherit;user-select:none}
.dp-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:8px}
.dp-title{font-size:15px;font-weight:600}
.dp-nav{width:34px;height:34px;border:none;background:none;cursor:pointer;border-radius:8px;
  font-size:18px;color:#555;display:flex;align-items:center;justify-content:center}
.dp-nav:hover{background:var(--teal-bg)}
.dp-grid{display:grid;grid-template-columns:repeat(7,1fr);gap:2px}
.dp-dow{font-size:12px;color:#999;text-align:center;padding:4px 0}
.dp-day{height:38px;border:none;background:none;cursor:pointer;border-radius:8px;font-size:14px;color:#333}
.dp-day:hover{background:var(--teal-bg)}
.dp-day.dp-empty{cursor:default}
.dp-day.dp-today{color:var(--teal);font-weight:700}
.dp-day.dp-sel{background:var(--teal);color:#fff}
.dp-day.dp-sun{color:#e24b4a}
.dp-day.dp-sat{color:#378add}
@media (max-width:768px){
  .dp-pop{width:calc(100vw - 32px);max-width:340px}
  .dp-day{height:44px;font-size:15px}
}
