/* ورودی تاریخ */
.calc-date-input-box {
  cursor: pointer;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px 20px;
  text-align: center;
  transition: 0.2s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  width: 240px;
}

/* پوشش تقویم (مودال) */
#calc-popupOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

/* جعبه اصلی تقویم */
.calc-calendar-wrapper {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  width: 100%;
  max-width: 770px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* سربرگ تقویم */
.calc-calendar-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.calc-calendar-header button {
  background: #0d6efd;
  border: none;
  color: #fff;
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
}
.calc-calendar-header button:disabled {
  background: #93c5fd;
  cursor: not-allowed;
}

/* تقویم‌ها در کنار هم */
.calc-calendar-container {
  display: flex;
  gap: 40px; /* فاصله بین دو ماه به 10 پیکسل تغییر کرد */
  justify-content: center;
}

.calc-calendar {
  width: 340px;
}

/* عنوان ماه */
.calc-header {
  text-align: center;
  font-weight: bold;
  margin-bottom: 8px;
}

/* روزهای هفته و روزها */
.calc-days{
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  gap: 4px;
  user-select: none;
}

.calc-dates {
  display: grid;
  grid-template-columns: repeat(7, 49px);
  gap: 4px;
  justify-content: center;
}

.calc-days div {
  font-weight: 600;
  color: #6b7280;
  padding: 6px 0;
  font-size: 13px;
}

/* همه‌ی انواع روزها */
.calc-dates .calc-normal,
.calc-dates .calc-spark,
.calc-dates .calc-peak,
.calc-dates .calc-reserved,
.calc-dates .calc-past,
.calc-dates .calc-disabled {
  width: 49px; /* عرض ثابت */
  height: 60px; /* ارتفاع ثابت (مربع) */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 4px;
  box-sizing: border-box;
  position: relative;
  background: #fff;
  color: #000;
  font-size: 14px;
  border: 1px solid #eee;
  border-radius: 5px;
  cursor: pointer;
}


/* روزهای غیرفعال */
.calc-dates .calc-disabled,
.calc-dates .calc-past,
.calc-dates .calc-out-window {
  background: #f9fafb;
  color: #aaa;
  cursor: not-allowed;
}

/* روز رزرو شده */
.calc-dates .calc-reserved {
  background: #e5e7eb;
  color: #777;
  cursor: default;
}

/* روز پیک */
.calc-dates .calc-peak {
  background: #ffecd1;
  color: #ff6600;
}

/* انتخاب شده */
.calc-dates .calc-selected {
  background: #0d6efd;
  color: #fff !important;
  font-weight: bold;
  border-color: #0b5ed7;
}

/* انتخاب شده در پیک */
.calc-dates .calc-peak.calc-selected {
  background: #0d6efd;
  color: #fff !important;
  font-weight: bold;
  border-color: #0b5ed7;
}

/* در بازه انتخابی */
.calc-dates .calc-in-range {
  background: #dbeafe;
  color: #0d6efd;
}

/* امروز */
.calc-dates .calc-today {
  outline: 2px solid #0d6efd;
}

/* ساختار داخلی محتوا */
.calc-day-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.top-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  width: 100%;
  flex-direction: row; /* پیش‌فرض: آیکون و شماره روز کنار هم */
}

.top-row.two-icons {
  flex-direction: column; /* اگر دو آیکون داریم: آیکون‌ها بالا، شماره روز پایین */
}

.day-icon-wrapper {
  display: flex;
  justify-content: center;
  gap: 4px;
  font-size: 14px;
}

/* شماره روز */
.calc-day-number {
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  margin: 0;
  text-align: center;
}

/* قیمت */
.calc-price {
  margin-top: auto;  /* این باعث میشه قیمت به پایین بچسبه */
  font-size: 11px;
  color: #555;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}
/* آیکون‌های پایین */
.bottom-icon-wrapper {
  display: flex;
  justify-content: center;
  gap: 4px;
  font-size: 14px;
  margin-top: 4px;
  flex-wrap: wrap;
}

/* آیکون رزرو */
.calc-reserved-lock {
  position: absolute;
  top: 6px;
  left: 6px;
  font-size: 16px;
  color: #555;
  pointer-events: none;
}

/* دکمه‌های پایین تقویم */
.calc-calendar-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}
.calc-calendar-actions button {
  background: #eee;
  border: none;
  color: #000;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
}
.calc-calendar-actions button:disabled {
  background: #93c5fd;
  cursor: not-allowed;
}

/* ریسپانسیو */
@media (max-width: 600px) {
  .calc-calendar-container {
    flex-direction: column;
    gap: 15px; /* اینجا فاصله بین تقویم‌ها در موبایل */
    width: 100%;
    align-items: center;
  }
  .calc-calendar {
    width: 90%;
    max-width: 340px;
  }
}
