/* WWM Jalali datepicker popup */
.wwm-jalali-popup {
	z-index: 100000;
	background: #fff;
	border: 1px solid #DDD8D0;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(22, 33, 62, 0.18);
	padding: 12px;
	width: 260px;
	font-family: 'Vazirmatn', Tahoma, sans-serif;
	direction: rtl;
	font-size: 13px;
	color: #16213E;
}

.wwm-jp-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

.wwm-jp-title {
	font-weight: 700;
}

.wwm-jp-nav {
	background: #F7F5F2;
	border: 1px solid #E5E1D8;
	border-radius: 6px;
	width: 28px;
	height: 28px;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	color: #16213E;
}

.wwm-jp-nav:hover {
	background: #2146DD;
	border-color: #2146DD;
	color: #fff;
}

.wwm-jp-weekdays {
	display: grid;
	grid-template-columns: repeat( 7, 1fr );
	text-align: center;
	color: #6B7280;
	font-weight: 600;
	margin-bottom: 4px;
}

.wwm-jp-grid {
	display: grid;
	grid-template-columns: repeat( 7, 1fr );
	gap: 2px;
}

.wwm-jp-day {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 30px;
	border-radius: 8px;
	cursor: pointer;
}

.wwm-jp-day:hover {
	background: #B9C4F5;
}

.wwm-jp-day.wwm-jp-blank {
	cursor: default;
}

.wwm-jp-day.wwm-jp-today {
	border: 1.5px solid #2146DD;
	font-weight: 700;
}

.wwm-jp-footer {
	margin-top: 8px;
	text-align: center;
}

.wwm-jp-today-btn {
	background: #16213E;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 6px 16px;
	font-size: 12px;
	font-family: inherit;
	cursor: pointer;
}

.wwm-jp-today-btn:hover {
	background: #1F2E52;
}

input.wwm-jalali-date {
	cursor: pointer;
	background-color: #fff;
}
