
  /* تنظیمات روزهای هفته */
  #calendar-weekdays {
	display: grid;
	grid-template-columns: repeat(7, 1fr);  /* تعداد ستون‌ها */
	gap: 4px;
	font-weight: bold;
	text-align: center;
	padding: 8px 0;
	background: #f8f8f8;
	border: 1px solid #ccc;
  }

  #calendar-weekdays div {
	padding: 4px 0;
  }



  /* تنظیمات فضای خالی قبل از اولین روز */
  .empty {
	background: transparent;
	border: none;
  }


#calendar-controls button {
	padding: 5px 10px;
	cursor: pointer;
}

#calendar-controls span {
	font-weight: bold;
}

.pzy-datepicker-wrapper{
    position: absolute;
    top: 100%;
    inset-inline-end: 0;
    z-index: 200;
    margin-top: -13px;
}
.pzy-datepicker{
	background: var(--primary-500);
    border-radius: 16px 16px 0 0;
    width: 352px;
    box-shadow: 0px 7px 20px 0px rgba(76, 86, 134, 0.10);
    min-width: 200px;
}
.pzy-datepicker input.calendar-display{
    width: 100%;
    border: none;
    background: none;
    color: #FFF;
    text-align: right;
	font-family: var(--primary_typo-font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 250%;
	margin: 15px 0 6px;
	padding: 0 12px;
}
.pzy-datepicker input.calendar-display:focus{
	outline: none;
}
.pzy-datepicker-wrapper .calendar-controls {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;

	color: #000;
	text-align: right;

	/* t/14-semibold */
	font-family: var(--secondary_typo-font-family);
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 180%; /* 25.2px */
}
.pzy-datepicker-body{
	position: relative;
	box-sizing: border-box;
    overflow: hidden;
    min-height: 70px;
	width: 100%;
    display: block;
    padding: 3px;
    position: absolute;
    border: 1px solid #ccc;
    background-color: #fff;
	border-radius: 0 0 16px 16px;

	color: var(--Gray-Gray-500, #071F39);
	text-align: right;
	font-family: var(--primary_typo-font-family);
	font-size: 10px;
	font-style: normal;
	font-weight: 400;
	line-height: 180%; /* 18px */
	padding: 14px 20px 17px;
}
.pzy-datepicker .day {
	text-align: center;
}
.pzy-datepicker .day.day.disabled{
	background: inherit;
    color: var(--gray-400, #617081);
	cursor: not-allowed;
}
.pzy-datepicker .day.selected:not(.disabled) {
	border-radius: 6px;
    border: 1px solid var(--secondary-500, #00DCA7);
    background-color: transparent;
	color: var(--gray-500, #071F39);
}

.pzy-datepicker .calendar-container {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 14px;
	margin-top: 14px;
}
.pzy-datepicker .pzy-select-date-box-title {
    color: var(--color-white, #FFF);
    text-align: right;
    font-family: var(--primary_typo-font-family);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
    margin: 10px 12px 0;
    display: inline-block;
}
.pzy-datepicker .pzy-datepicker-actions{
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
}
.pzy-datepicker .pzy-datepicker-submit{
	border-radius: 19.5px;
    background: var(--secondary-500, #00DCA7);
	border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
	gap: 8px;
    min-width: 108px;
    min-height: 39px;
    padding: 5px 10.5px;
    box-sizing: border-box;
    color: var(--gray-100, #F5F6F7);
    text-align: right;
    font-family: var(--primary_typo-font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%;
	margin: 0 auto;
}
.pzy-datepicker .pzy-datepicker-submit[data-loading]{
	opacity: 0.8;
	cursor: not-allowed;
}
.pzy-datepicker .pzy-datepicker-submit:hover{
    background: var(--secondary-500, #00DCA7);
    color: var(--gray-100, #F5F6F7);
}
.pzy-datepicker .pzy-datepicker-submit svg{
	width: 18px;
	height: 18px;
	stroke: var(--gray-100, #F5F6F7);
}
.pzy-datepicker button.prev-month,
.pzy-datepicker button.next-month{
	border: none;
	background: none;
}
