/* HRP Jalali datepicker - lightweight */
.hrp-jdp-pop{
  position:absolute;
  z-index:99999;
  background:#fff;
  border:1px solid rgba(0,0,0,.15);
  border-radius:10px;
  box-shadow:0 10px 30px rgba(0,0,0,.12);
  padding:10px;
  width:280px;
  font-family:inherit;
}
.hrp-jdp-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:8px;
  margin-bottom:8px;
}
.hrp-jdp-btn{
  border:1px solid rgba(0,0,0,.15);
  background:#f7f7f7;
  border-radius:8px;
  padding:4px 8px;
  cursor:pointer;
  user-select:none;
}
.hrp-jdp-title{
  font-weight:600;
  font-size:14px;
}
.hrp-jdp-grid{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:4px;
  text-align:center;
  direction:rtl;
}
.hrp-jdp-dow{
  font-size:12px;
  opacity:.7;
  padding:4px 0;
}
.hrp-jdp-day{
  padding:6px 0;
  border-radius:8px;
  cursor:pointer;
  user-select:none;
}
.hrp-jdp-day:hover{ background:#f0f0f0; }
.hrp-jdp-day.is-empty{ cursor:default; opacity:0; }
.hrp-jdp-day.is-today{ border:1px solid rgba(0,0,0,.2); }
.hrp-jdp-day.is-selected{ background:#222; color:#fff; }
input.hrp-jalali-visible{
  direction:ltr;
}
