/*! Local Jalali DatePicker CSS (offline) */
.jdp-container-local{
  width: 320px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  padding: 10px;
  font-family: inherit;
  line-height: 1.4;
}
.jdp-container-local *{ box-sizing: border-box; }
.jdp-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  padding: 4px 4px 10px;
}
.jdp-title{
  flex:1;
  text-align:center;
  font-weight:700;
  font-size:14px;
}
.jdp-nav{
  width:34px;
  height:34px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  cursor:pointer;
  font-size:20px;
  line-height:1;
}
.jdp-week, .jdp-grid{
  display:grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.jdp-wd{
  text-align:center;
  font-size:12px;
  opacity:.65;
  padding: 4px 0 2px;
}
.jdp-cell{ min-height: 34px; }
.jdp-empty{ visibility:hidden; }
.jdp-day{
  width:100%;
  height:34px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.08);
  background:#fff;
  cursor:pointer;
  font-size:13px;
}
.jdp-day:hover{ border-color: rgba(0,0,0,.18); }
.jdp-day.is-selected{
  border-color: rgba(0,0,0,.35);
  font-weight:700;
}
.jdp-day.is-disabled{
  opacity:.35;
  cursor:not-allowed;
}
@media (max-width: 420px){
  .jdp-container-local{ width: calc(100vw - 24px); }
}