/* assets/css/jalali-datepicker.css */
.jalali-datepicker {
  position: absolute;
  background: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 10000;
  width: 260px;
  font-family: 'Vazir', Tahoma, sans-serif;
  direction: rtl;
  padding: 8px;
}
.jd-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.jd-header button {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #7cb342;
}
.jd-title {
  font-weight: bold;
}
.jd-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
}
.jd-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.jd-day {
  padding: 6px 0;
  text-align: center;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
}
.jd-day:hover {
  background: #e0ffb3;
}
.jd-today {
  background: #aed581;
  font-weight: bold;
}