/* Universal Login & Register — frontend styles. All themable values are CSS custom
 * properties (var(--ulr-*)) injected inline by ULR_Assets from the Appearance settings.
 * No external requests of any kind happen from this stylesheet. */

.ulr-form,
.ulr-modal {
	--ulr-font-size: 15px;
	--ulr-font-weight: 400;
	--ulr-line-height: 1.6;
	--ulr-text-color: #1e1e1e;
	--ulr-label-color: #333333;
	--ulr-link-color: #2563eb;
	--ulr-link-hover-color: #1d4ed8;
	--ulr-form-bg: #ffffff;
	--ulr-input-bg: #ffffff;
	--ulr-input-text-color: #1e1e1e;
	--ulr-placeholder-color: #9ca3af;
	--ulr-input-focus-border-color: #2563eb;
	--ulr-button-bg: #2563eb;
	--ulr-button-text-color: #ffffff;
	--ulr-button-hover-text-color: #ffffff;
	--ulr-button-hover-bg: #1d4ed8;
	--ulr-button-border-color: #2563eb;
	--ulr-button-hover-border-color: #1d4ed8;
	--ulr-button-border-width: 0px;
	--ulr-button-font-size: 15px;
	--ulr-link-decoration: underline;
	--ulr-link-hover-decoration: underline;
	--ulr-border-color: #d1d5db;
	--ulr-border-width: 1px;
	--ulr-input-radius: 8px;
	--ulr-button-radius: 8px;
	--ulr-form-radius: 12px;
	--ulr-item-gap: 16px;
	--ulr-input-height: 44px;
	--ulr-form-max-width: 420px;
	--ulr-error-color: #dc2626;
	--ulr-success-color: #16a34a;
	--ulr-font-family: inherit;
	--ulr-form-padding: 24px;
	--ulr-form-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	--ulr-heading-font-size: 20px;
	--ulr-input-border-style: solid;
	--ulr-input-padding-x: 12px;
	--ulr-button-padding-x: 20px;
	--ulr-button-font-weight: 600;
	--ulr-accent-color: #2563eb;
	--ulr-country-dropdown-bg: #ffffff;
	--ulr-country-dropdown-hover-bg: #eff6ff;
	--ulr-label-gap: 6px;
}

/* Reset the theme's/browser's default styling for form controls and links so the
 * Appearance settings are the only thing that ever determines how these look. Uses
 * :where() so the reset itself carries zero specificity — every actual component rule
 * below (.ulr-input, .ulr-btn, ...) still wins regardless of selector order. Checkboxes
 * and radios keep their native appearance (no custom replacement graphic is drawn for
 * them), everything else loses browser/theme chrome entirely. */
:where(.ulr-form, .ulr-modal) button,
:where(.ulr-form, .ulr-modal) input,
:where(.ulr-form, .ulr-modal) select,
:where(.ulr-form, .ulr-modal) textarea,
:where(.ulr-form, .ulr-modal) a {
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	color: inherit;
	font: inherit;
	line-height: inherit;
	text-decoration: none;
	border-radius: 0;
	box-shadow: none;
	outline: none;
}

:where(.ulr-form, .ulr-modal) input:not([type="checkbox"]):not([type="radio"]),
:where(.ulr-form, .ulr-modal) select,
:where(.ulr-form, .ulr-modal) textarea,
:where(.ulr-form, .ulr-modal) button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

:where(.ulr-form, .ulr-modal) button,
:where(.ulr-form, .ulr-modal) a {
	cursor: pointer;
}

:where(.ulr-form, .ulr-modal) ul,
:where(.ulr-form, .ulr-modal) ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

:where(.ulr-form, .ulr-modal) h1,
:where(.ulr-form, .ulr-modal) h2,
:where(.ulr-form, .ulr-modal) h3,
:where(.ulr-form, .ulr-modal) p {
	margin: 0;
}

.ulr-form {
	box-sizing: border-box;
	max-width: var(--ulr-form-max-width);
	margin: 0 auto;
	padding: var(--ulr-form-padding);
	background: var(--ulr-form-bg);
	border-radius: var(--ulr-form-radius);
	border: var(--ulr-border-width) solid var(--ulr-border-color);
	box-shadow: var(--ulr-form-shadow);
	font-family: var(--ulr-font-family);
	font-size: var(--ulr-font-size);
	font-weight: var(--ulr-font-weight);
	line-height: var(--ulr-line-height);
	color: var(--ulr-text-color);
}

.ulr-form *,
.ulr-modal * {
	box-sizing: border-box;
}

/* Form header: optional icon + title + subtitle, stacked and centered above the steps. */
.ulr-form-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	margin: 0 0 var(--ulr-item-gap);
	text-align: center;
}

.ulr-form-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 2px;
	color: var(--ulr-link-color);
}

.ulr-form-icon svg {
	width: 100%;
	height: 100%;
}

.ulr-form-title {
	margin: 0;
	font-size: var(--ulr-heading-font-size);
	font-weight: 700;
	color: var(--ulr-text-color);
}

.ulr-form-subtitle {
	margin: 0;
	font-size: 0.92em;
	color: var(--ulr-label-color);
}

.ulr-step-inner {
	display: flex;
	flex-direction: column;
	gap: var(--ulr-item-gap);
}

.ulr-field {
	display: flex;
	flex-direction: column;
	gap: var(--ulr-label-gap);
}

.ulr-fields-grid {
	display: flex;
	flex-wrap: wrap;
	gap: var(--ulr-item-gap);
}

.ulr-field-full {
	flex: 1 1 100%;
}

.ulr-field-half {
	flex: 1 1 calc(50% - var(--ulr-item-gap) / 2);
	min-width: 160px;
}

.ulr-label {
	font-size: 0.92em;
	font-weight: 500;
	color: var(--ulr-label-color);
}

.ulr-required {
	color: var(--ulr-error-color);
}

.ulr-input,
.ulr-form select,
.ulr-form textarea {
	width: 100%;
	min-height: var(--ulr-input-height);
	padding: 0 var(--ulr-input-padding-x);
	background: var(--ulr-input-bg);
	color: var(--ulr-input-text-color);
	border: var(--ulr-border-width) var(--ulr-input-border-style) var(--ulr-border-color);
	border-radius: var(--ulr-input-radius);
	font-family: inherit;
	font-size: 1em;
	transition: border-color 0.15s ease;
}

:where(.ulr-form, .ulr-modal) input[type="checkbox"],
:where(.ulr-form, .ulr-modal) input[type="radio"] {
	accent-color: var(--ulr-accent-color);
}

.ulr-form textarea {
	min-height: calc(var(--ulr-input-height) * 2);
	padding-top: 10px;
	padding-bottom: 10px;
}

.ulr-input:focus,
.ulr-form select:focus,
.ulr-form textarea:focus {
	outline: none;
	border-color: var(--ulr-input-focus-border-color);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--ulr-input-focus-border-color) 20%, transparent);
}

.ulr-input::placeholder,
.ulr-form textarea::placeholder {
	color: var(--ulr-placeholder-color);
}

/* Input with a leading icon: the icon sits inside the field's start padding. Uses logical
 * properties (inset-inline-start / padding-inline-start) so it flips correctly in RTL. */
.ulr-input-wrap {
	position: relative;
	display: block;
	width: 100%;
}

.ulr-input-wrap.has-icon .ulr-input {
	padding-inline-start: 40px;
}

.ulr-input-icon {
	position: absolute;
	inset-inline-start: 12px;
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex;
	width: 18px;
	height: 18px;
	color: var(--ulr-placeholder-color);
	pointer-events: none;
}

.ulr-input-icon svg {
	width: 100%;
	height: 100%;
}

.ulr-identifier-row {
	display: flex;
	gap: 8px;
}

.ulr-identifier-row .ulr-input,
.ulr-identifier-row .ulr-input-wrap {
	flex: 1;
}

.ulr-country-select {
	display: flex;
	align-items: center;
	gap: 4px;
	height: var(--ulr-input-height);
	padding: 0 10px;
	background: var(--ulr-input-bg);
	border: var(--ulr-border-width) solid var(--ulr-border-color);
	border-radius: var(--ulr-input-radius);
	cursor: pointer;
	color: var(--ulr-input-text-color);
}

.ulr-country-dropdown {
	position: absolute;
	z-index: 20;
	margin-top: calc(var(--ulr-input-height) + 8px);
	max-height: 260px;
	overflow-y: auto;
	background: var(--ulr-country-dropdown-bg);
	border: var(--ulr-border-width) solid var(--ulr-border-color);
	border-radius: var(--ulr-input-radius);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	min-width: 220px;
}

.ulr-country-dropdown input[type="search"] {
	width: 100%;
	height: 36px;
	padding: 0 10px;
	border: none;
	border-bottom: 1px solid var(--ulr-border-color);
}

.ulr-country-option {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 10px;
	cursor: pointer;
	font-size: 0.92em;
}

.ulr-country-option:hover,
.ulr-country-option.is-active {
	background: var(--ulr-country-dropdown-hover-bg);
}

.ulr-identifier-group[data-ulr-has-country] .ulr-country-select:not([hidden]) {
	display: flex;
}

.ulr-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	height: var(--ulr-input-height);
	padding: 0 var(--ulr-button-padding-x);
	border: var(--ulr-button-border-width) solid var(--ulr-button-border-color);
	border-radius: var(--ulr-button-radius);
	background: var(--ulr-button-bg);
	color: var(--ulr-button-text-color);
	font-family: inherit;
	font-size: var(--ulr-button-font-size);
	font-weight: var(--ulr-button-font-weight);
	cursor: pointer;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}

.ulr-btn:hover:not(:disabled) {
	background: var(--ulr-button-hover-bg);
	color: var(--ulr-button-hover-text-color);
	border-color: var(--ulr-button-hover-border-color);
}

.ulr-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.ulr-btn-link {
	height: auto;
	padding: 4px 2px;
	border: none;
	background: transparent;
	color: var(--ulr-link-color);
	font-size: 1em;
	font-weight: 500;
	text-decoration: var(--ulr-link-decoration);
}

.ulr-btn-link:hover:not(:disabled) {
	background: transparent;
	color: var(--ulr-link-hover-color);
	text-decoration: var(--ulr-link-hover-decoration);
}

.ulr-reset-link {
	text-decoration: var(--ulr-link-decoration);
}

.ulr-reset-link:hover {
	color: var(--ulr-link-hover-color);
	text-decoration: var(--ulr-link-hover-decoration);
}

.ulr-back {
	align-self: flex-start;
}

.ulr-error {
	margin: 0;
	color: var(--ulr-error-color);
	font-size: 0.85em;
}

.ulr-step-desc {
	margin: 0;
	color: var(--ulr-text-color);
}

/* One box per digit (built by UlrForm.prototype.initOtpBoxes()); the real submitted
 * value lives in the hidden #ulr-otp-code input kept in sync behind these. */
.ulr-otp-boxes {
	display: flex;
	gap: 8px;
	direction: ltr;
}

.ulr-otp-box {
	width: var(--ulr-input-height);
	height: var(--ulr-input-height);
	flex: 1 1 0;
	min-width: 0;
	max-width: 56px;
	text-align: center;
	background: var(--ulr-input-bg);
	color: var(--ulr-input-text-color);
	border: var(--ulr-border-width) var(--ulr-input-border-style) var(--ulr-border-color);
	border-radius: var(--ulr-input-radius);
	font-family: inherit;
	font-size: 1.3em;
	font-weight: 600;
	transition: border-color 0.15s ease;
}

.ulr-otp-box:focus {
	outline: none;
	border-color: var(--ulr-input-focus-border-color);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--ulr-input-focus-border-color) 20%, transparent);
}

.ulr-resend-row {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ulr-countdown {
	color: var(--ulr-label-color);
	font-size: 0.9em;
}

.ulr-hp-wrap {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	white-space: nowrap !important;
}

.ulr-terms {
	font-size: 0.85em;
	color: var(--ulr-label-color);
}

.ulr-terms .ulr-checkbox {
	align-items: flex-start;
}

.ulr-terms a {
	color: var(--ulr-link-color);
	text-decoration: var(--ulr-link-decoration);
}

.ulr-terms a:hover {
	color: var(--ulr-link-hover-color);
	text-decoration: var(--ulr-link-hover-decoration);
}

.ulr-radio-group,
.ulr-checkbox-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.ulr-radio,
.ulr-checkbox {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 400;
	cursor: pointer;
}

.ulr-field-desc {
	margin: 0;
	font-size: 0.8em;
	color: var(--ulr-label-color);
}

.ulr-notice {
	color: var(--ulr-text-color);
}

.ulr-modal-trigger {
	cursor: pointer;
}

/* Modal */
.ulr-modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.5);
	padding: 20px;
}

.ulr-modal-overlay[hidden] {
	display: none;
}

.ulr-modal {
	position: relative;
	width: 100%;
	max-width: calc(var(--ulr-form-max-width) + 48px);
	max-height: 90vh;
	overflow-y: auto;
	background: var(--ulr-form-bg);
	border-radius: var(--ulr-form-radius);
	padding: 8px;
}

.ulr-modal-close {
	position: absolute;
	top: 8px;
	inset-inline-end: 8px;
	width: 32px;
	height: 32px;
	border: none;
	background: transparent;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	color: var(--ulr-text-color);
	z-index: 2;
}

.ulr-modal .ulr-form {
	border: none;
	max-width: none;
}

/* RTL / LTR: `start`/`end` follow the element's own `dir` automatically, so this single
 * rule covers both directions without needing separate [dir="rtl"]/[dir="ltr"] blocks. */
.ulr-form,
.ulr-modal {
	text-align: start;
}

/* Phone numbers, emails, and passwords are always Latin/numeric content, so their
 * typed text stays LTR even inside an RTL form — but the (often Persian/Arabic)
 * placeholder text should still read RTL. #ulr-identifier is included explicitly
 * since it's type="text" (it accepts either a phone or an email, so it can't use
 * type="tel"/"email" itself). */
.ulr-form[dir="rtl"] input[type="email"],
.ulr-form[dir="rtl"] input[type="tel"],
.ulr-form[dir="rtl"] input[type="password"],
.ulr-form[dir="rtl"] #ulr-identifier {
	direction: ltr;
	text-align: left;
}

.ulr-form[dir="rtl"] input[type="email"]::placeholder,
.ulr-form[dir="rtl"] input[type="tel"]::placeholder,
.ulr-form[dir="rtl"] input[type="password"]::placeholder,
.ulr-form[dir="rtl"] #ulr-identifier::placeholder {
	direction: rtl;
	text-align: right;
}

/* When such an LTR-forced input carries a leading icon, flip its wrapper to LTR too so the
 * icon and the input's start padding land on the same (left) side instead of opposite ones. */
.ulr-form[dir="rtl"] .ulr-input-wrap:has(#ulr-identifier),
.ulr-form[dir="rtl"] .ulr-input-wrap:has(input[type="email"]),
.ulr-form[dir="rtl"] .ulr-input-wrap:has(input[type="tel"]) {
	direction: ltr;
}

/* Mobile only. Everything above is the shared/desktop layout; these overrides tighten
 * spacing and make the header + toasts fit a narrow screen. */
@media (max-width: 480px) {
	.ulr-form {
		padding: 18px;
	}

	.ulr-field-half {
		flex: 1 1 100%;
	}

	.ulr-form-icon {
		width: 40px;
		height: 40px;
	}

	/* Toasts span the screen width and stack flush to one edge, whatever the configured
	 * corner/centering is on desktop. */
	.ulr-toast-container {
		left: 0;
		right: 0;
		transform: none;
		align-items: stretch;
		padding: 10px;
	}

	.ulr-toast {
		width: 100%;
	}
}

/* WooCommerce My Account takeover: our form is injected before the native login/register
 * markup via woocommerce_before_customer_login_form, then the native markup is hidden here
 * rather than overridden by template, so the toggle stays a single switch. The native
 * markup is a single <div class="u-columns col2-set" id="customer_login"> wrapping both
 * the login and register columns — that's the actual selector WooCommerce renders.
 *
 * Two independent selectors hide it, since either one alone can fail on some themes:
 *  - the body class one requires the theme to actually call body_class() with filters
 *    applied (some fully custom headers skip this);
 *  - the sibling-combinator one requires our form and #customer_login to share a parent,
 *    which is true for WooCommerce's own unmodified my-account/form-login.php template,
 *    but not guaranteed if a theme overrides that template with extra wrapping markup. */
.ulr-wc-takeover #customer_login,
.ulr-form[data-ulr-context="auth"] ~ #customer_login {
	display: none;
}

/* Standalone login page (wp-login.php takeover): a full page we render ourselves,
 * site logo + our form only — see ULR_WPLogin::render_standalone_page(). */
.ulr-standalone-login {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	margin: 0;
	background: #f0f0f1;
}

.ulr-standalone-login-card {
	width: 100%;
	max-width: calc(var(--ulr-form-max-width, 420px) + 32px);
	padding: 16px;
	box-sizing: border-box;
}

.ulr-standalone-logo {
	text-align: center;
	margin-bottom: 20px;
}

.ulr-standalone-logo img {
	max-width: 100%;
	height: auto;
}

.ulr-standalone-site-name {
	font-size: 20px;
	font-weight: 700;
	text-decoration: none;
	color: var(--ulr-text-color, #1e1e1e);
}

.ulr-standalone-back {
	text-align: center;
	margin: 16px 0 0;
}

.ulr-standalone-back a {
	color: var(--ulr-link-color, #2563eb);
	text-decoration: none;
	font-size: 13px;
}

.ulr-standalone-back a:hover {
	color: var(--ulr-link-hover-color, #1d4ed8);
}

/* Success/error notification pop-up. Position, colors, size and icon are all driven by
 * the Appearance -> Notifications settings; the container is appended to <body> once
 * and reused for every toast. */
.ulr-toast-container {
	position: fixed;
	z-index: 100001;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 16px;
	max-width: calc(100vw - 32px);
	pointer-events: none;
}

.ulr-toast-pos-top-left { top: 0; left: 0; align-items: flex-start; }
.ulr-toast-pos-top-center { top: 0; left: 50%; transform: translateX(-50%); align-items: center; }
.ulr-toast-pos-top-right { top: 0; right: 0; align-items: flex-end; }
.ulr-toast-pos-bottom-left { bottom: 0; left: 0; align-items: flex-start; flex-direction: column-reverse; }
.ulr-toast-pos-bottom-center { bottom: 0; left: 50%; transform: translateX(-50%); align-items: center; flex-direction: column-reverse; }
.ulr-toast-pos-bottom-right { bottom: 0; right: 0; align-items: flex-end; flex-direction: column-reverse; }

.ulr-toast {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	width: var(--ulr-notification-width, 320px);
	max-width: 100%;
	padding: 14px 16px;
	border-radius: var(--ulr-notification-radius, 10px);
	box-shadow: var(--ulr-notification-shadow, 0 10px 30px rgba(0, 0, 0, 0.25));
	font-family: var(--ulr-font-family, inherit);
	font-size: var(--ulr-font-size, 15px);
	pointer-events: auto;
	animation: ulr-toast-in 0.2s ease;
}

/* Per-type background + text colors (Appearance -> Notifications). */
.ulr-toast.is-success {
	background: var(--ulr-notification-success-bg, #16a34a);
	color: var(--ulr-notification-success-text, #ffffff);
}

.ulr-toast.is-notice {
	background: var(--ulr-notification-notice-bg, #2563eb);
	color: var(--ulr-notification-notice-text, #ffffff);
}

.ulr-toast.is-error {
	background: var(--ulr-notification-error-bg, #dc2626);
	color: var(--ulr-notification-error-text, #ffffff);
}

/* Content alignment within each toast (start / center / end). */
.ulr-toast-container.ulr-toast-align-center .ulr-toast { align-items: center; }
.ulr-toast-container.ulr-toast-align-center .ulr-toast-message { text-align: center; }
.ulr-toast-container.ulr-toast-align-end .ulr-toast { align-items: flex-end; }
.ulr-toast-container.ulr-toast-align-end .ulr-toast-message { text-align: end; }

.ulr-toast.is-leaving {
	animation: ulr-toast-out 0.2s ease forwards;
}

/* Icon / message / close ordering is driven by `order` so icon-position and
 * close-position can be flipped independently without reordering the DOM. */
.ulr-toast-icon {
	flex: none;
	width: 22px;
	height: 22px;
	color: currentColor;
	order: 1;
}

.ulr-toast-icon svg {
	width: 100%;
	height: 100%;
}

.ulr-toast-message {
	flex: 1;
	line-height: 1.4;
	order: 2;
	overflow-wrap: anywhere;
}

.ulr-toast-close {
	flex: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	background: none;
	border: none;
	color: inherit;
	opacity: 0.7;
	cursor: pointer;
	font-size: 18px;
	line-height: 1;
	padding: 0;
	order: 4;
}

.ulr-toast-close svg {
	width: 16px;
	height: 16px;
}

.ulr-toast-close:hover {
	opacity: 1;
}

.ulr-toast.ulr-toast-icon-end .ulr-toast-icon { order: 3; }
.ulr-toast.ulr-toast-close-start .ulr-toast-close { order: 0; }

@keyframes ulr-toast-in {
	from { opacity: 0; transform: translateY(-8px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes ulr-toast-out {
	from { opacity: 1; }
	to { opacity: 0; transform: translateY(-8px); }
}

/* Jalali (Shamsi) calendar popup for date fields with Calendar: Jalali. */
.ulr-jalali-popup {
	position: absolute;
	z-index: 25;
	margin-top: 4px;
	width: 260px;
	background: var(--ulr-form-bg);
	border: var(--ulr-border-width) solid var(--ulr-border-color);
	border-radius: var(--ulr-input-radius);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	padding: 10px;
	font-family: var(--ulr-font-family);
	direction: rtl;
}

.ulr-jalali-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
}

.ulr-jalali-nav {
	width: 28px;
	height: 28px;
	border: none;
	background: transparent;
	color: var(--ulr-text-color);
	font-size: 18px;
	cursor: pointer;
	border-radius: var(--ulr-input-radius);
}

.ulr-jalali-nav:hover {
	background: color-mix(in srgb, var(--ulr-link-color) 10%, transparent);
}

.ulr-jalali-title {
	font-weight: 600;
	font-size: 0.9em;
	color: var(--ulr-text-color);
}

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

.ulr-jalali-day {
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: transparent;
	border-radius: var(--ulr-input-radius);
	font-size: 0.85em;
	color: var(--ulr-text-color);
	cursor: pointer;
}

.ulr-jalali-day.is-blank {
	cursor: default;
}

.ulr-jalali-day:not(.is-blank):hover {
	background: var(--ulr-link-color);
	color: #ffffff;
}
