/* RTL Jalali datepicker - v49 */
.hm-jdp{
  position:absolute;
  z-index:9999;
  width:372px;
  max-width:calc(100vw - 24px);
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  box-shadow:0 18px 45px rgba(15,23,42,.16);
  padding:12px;
  direction:rtl;
  font-family:Vazirmatn,Vazir,Tahoma,Arial,sans-serif;
}
.hm-jdp-head{
  display:grid;
  grid-template-columns:auto auto 1fr auto auto;
  align-items:center;
  gap:6px;
  margin-bottom:10px;
}
.hm-jdp-center{
  display:grid;
  grid-template-columns:1fr 78px;
  gap:6px;
  min-width:0;
}
.hm-jdp-nav,
.hm-jdp-month,
.hm-jdp-year{
  border:1px solid #e5e7eb;
  background:#f8fafc;
  color:#374151;
  height:32px;
  min-height:32px;
  border-radius:10px;
  cursor:pointer;
  padding:0 8px;
  font-size:11px;
  font-weight:850;
  font-family:inherit;
}
.hm-jdp-nav:hover,
.hm-jdp-month:hover,
.hm-jdp-year:hover{
  background:#eff6ff;
  border-color:#bfdbfe;
  color:#1d4ed8;
}
.hm-jdp-month,
.hm-jdp-year{
  width:100%;
  text-align:center;
}
.hm-jdp-year{
  direction:ltr;
}
.hm-jdp-week,.hm-jdp-days{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:4px;
}
.hm-jdp-week span{
  text-align:center;
  color:#6b7280;
  font-size:11px;
  padding:4px 0;
  font-weight:850;
}
.hm-jdp-day{
  border:0;
  background:#fff;
  color:#111827;
  border-radius:10px;
  height:34px;
  min-height:34px;
  padding:0;
  cursor:pointer;
  font-size:12px;
  font-family:inherit;
}
.hm-jdp-day:hover{background:#eff6ff;color:#1d4ed8}
.hm-jdp-day.is-empty{visibility:hidden}
.hm-jdp-day.is-today{background:#f3f4f6;font-weight:900}
.hm-jdp-day.is-selected{background:#2563eb;color:#fff;font-weight:900}
.hm-jdp-foot{
  display:flex;
  justify-content:space-between;
  gap:8px;
  margin-top:10px;
}
.hm-jdp-foot button{
  flex:1;
  min-height:32px;
  border-radius:10px;
  border:0;
  cursor:pointer;
  font-size:11.5px;
  padding:0 8px;
  font-family:inherit;
  font-weight:850;
}
.hm-jdp-today{background:#eff6ff;color:#1d4ed8}
.hm-jdp-clear{background:#fef2f2;color:#b91c1c}
@media(max-width:520px){
  .hm-jdp{
    position:fixed!important;
    left:10px!important;
    right:10px!important;
    top:auto!important;
    bottom:12px!important;
    width:auto;
  }
  .hm-jdp-head{
    grid-template-columns:1fr 1fr;
  }
  .hm-jdp-center{
    grid-column:1/3;
    grid-row:1;
  }
}


/* v50 - month names in calendar navigation */
.hm-jdp{
  width:410px;
}
.hm-jdp-head{
  grid-template-columns:54px 74px 1fr 74px 54px;
}
.hm-jdp-center{
  grid-template-columns:1fr 92px;
  gap:6px;
}
.hm-jdp-current-title{
  grid-column:1/3;
  text-align:center;
  font-weight:950;
  font-size:14px;
  color:#111827;
  padding:6px 8px;
  border-radius:12px;
  background:linear-gradient(135deg,#eff6ff,#f0f9ff);
  border:1px solid #dbeafe;
}
.hm-jdp-month-nav{
  height:42px;
  min-height:42px;
  display:flex;
  flex-direction:column;
  gap:1px;
  align-items:center;
  justify-content:center;
  line-height:1.2;
}
.hm-jdp-month-nav small{
  font-size:9.5px;
  color:#64748b;
  font-weight:800;
}
.hm-jdp-month-nav b{
  font-size:12px;
  color:#1d4ed8;
  font-weight:950;
}
@media(max-width:520px){
  .hm-jdp-head{
    grid-template-columns:1fr 1fr;
  }
  .hm-jdp-center{
    grid-column:1/3;
    grid-template-columns:1fr 92px;
  }
  .hm-jdp-current-title{
    grid-column:1/3;
  }
}
