@font-face {
  font-family: 'IranSansAdmin';
  src: url('/fonts/IRANSansWeb(FaNum).ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'IranSansAdmin';
  src: url('/fonts/IRANSansWeb(FaNum)_Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

html {
  font-size: 15px;
  min-height: 100%;
  color-scheme: dark;
}

body {
  --bs-body-color: #e8eef7;
  --bs-body-color-rgb: 232, 238, 247;
  --bs-emphasis-color: #ffffff;
  --bs-emphasis-color-rgb: 255, 255, 255;
  --bs-secondary-color: rgba(232, 238, 247, 0.74);
  --bs-secondary-color-rgb: 232, 238, 247;
  --bs-tertiary-color: rgba(232, 238, 247, 0.62);
  --bs-tertiary-color-rgb: 232, 238, 247;
  --bs-heading-color: #f5f8fc;
  --bs-link-color: #8cc7ff;
  --bs-link-hover-color: #b9ddff;
  --bs-border-color: rgba(255, 255, 255, 0.14);
  margin: 0;
  min-height: 100vh;
  font-family: 'IranSansAdmin', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(18, 64, 118, 0.18), transparent 32%),
    radial-gradient(circle at right center, rgba(32, 116, 195, 0.12), transparent 28%),
    #07111f;
  color: #e8eef7;
}

a {
  text-decoration: none;
}

.shell {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  padding: 24px 18px;
  background: rgba(5, 12, 24, 0.9);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand-block {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 10px 10px 22px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 46px;
}

.brand-mark-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.brand-title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-family: 'IranSansAdmin', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

.brand-subtitle {
  color: rgba(232, 238, 247, 0.7);
  font-size: 0.84rem;
  font-family: 'IranSansAdmin', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

.sidebar-nav {
  display: grid;
  gap: 8px;
}

.nav-link-shell {
  display: block;
  position: relative;
  padding: 12px 14px;
  border-radius: 14px;
  color: rgba(232, 238, 247, 0.86);
  background: transparent;
  transition: background-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.nav-link-shell:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(2px);
}

.nav-link-shell.active,
.nav-link-shell[aria-current='page'] {
  color: #07111f;
  background: linear-gradient(135deg, #f2c94c, #f2994a);
  box-shadow: 0 10px 22px rgba(242, 153, 74, 0.2);
  font-weight: 700;
}

.nav-link-shell.active::before,
.nav-link-shell[aria-current='page']::before {
  content: '';
  position: absolute;
  inset: 8px auto 8px 8px;
  width: 4px;
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.75);
}

.nav-link-shell.active {
  padding-left: 24px;
}

.nav-link-shell.active:hover,
.nav-link-shell[aria-current='page']:hover {
  color: #07111f;
  transform: none;
}

.sortable-header {
  cursor: pointer;
  user-select: none;
}

.sortable-header::after {
  content: '';
  display: inline-block;
  margin-left: 0.35rem;
  opacity: 0.7;
}

.sortable-header[aria-sort='ascending']::after {
  content: '▲';
}

.sortable-header[aria-sort='descending']::after {
  content: '▼';
}

.sidebar-footer {
  margin-top: 22px;
  padding: 18px 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-user {
  font-weight: 600;
  margin-bottom: 6px;
}

.footer-link {
  color: #8cc7ff;
}

.main-panel {
  padding: 28px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.eyebrow {
  color: #8cc7ff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 700;
  font-family: 'IranSansAdmin', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

.page-title {
  margin: 6px 0 0;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  font-weight: 800;
  font-family: 'IranSansAdmin', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(232, 238, 247, 0.88);
  font-size: 0.88rem;
}

.content-card {
  border-radius: 28px;
  background: rgba(10, 18, 33, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.32);
  padding: 26px;
}

.page-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.page-header-title {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  font-weight: 800;
  font-family: 'IranSansAdmin', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

.page-header-copy {
  color: rgba(232, 238, 247, 0.72);
  max-width: 76ch;
}

.page-header-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.page-footer {
  padding-top: 10px;
}

.card-dark,
.panel-box,
.settings-form,
.detail-card {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card-dark {
  overflow: hidden;
  color: #e8eef7;
}

.panel-box {
  padding: 20px;
}

.settings-form {
  display: grid;
  gap: 18px;
  padding: 0;
  border: 0;
  background: transparent;
}

.form-select {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: #e8eef7;
}

.form-select:focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: #8cc7ff;
  color: #fff;
  box-shadow: 0 0 0 0.15rem rgba(140, 199, 255, 0.18);
}

.form-select option {
  color: #0b1220;
}

/* Native select menus on the home-banner dialog must follow the dark admin
   theme. These controls intentionally use form-control rather than the global
   searchable form-select enhancement. */
.home-banner-form select.form-control {
  color-scheme: dark;
  background-color: #111827;
  color: #e8eef7;
}

.home-banner-form select.form-control option,
.home-banner-form select.form-control optgroup {
  background-color: #111827;
  color: #e8eef7;
}

.home-banner-form select.form-control option:checked {
  background-color: #334155;
  color: #fff;
}

.form-control-dark,
.form-control-dark:focus {
  background: rgba(255, 255, 255, 0.04);
  color: #e8eef7;
  border-color: rgba(255, 255, 255, 0.08);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.metric-card {
  border-radius: 22px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-label {
  color: rgba(232, 238, 247, 0.66);
  font-size: 0.86rem;
  margin-bottom: 8px;
}

.metric-value {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.metric-detail {
  margin-top: 10px;
  color: rgba(232, 238, 247, 0.7);
  font-size: 0.92rem;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.panel-box {
  border-radius: 22px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-hero {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  margin-bottom: 18px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(242, 201, 76, 0.14), rgba(140, 199, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-hero-title {
  margin: 6px 0 8px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 800;
}

.dashboard-hero-copy {
  max-width: 70ch;
  margin: 0;
  color: rgba(232, 238, 247, 0.76);
}

.dashboard-hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.dashboard-banner {
  margin-bottom: 16px;
}

.dashboard-kpi-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.dashboard-kpi {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(232, 238, 247, 0.9);
  font-size: 0.85rem;
}

.dashboard-stack {
  display: grid;
  gap: 10px;
}

/* Pager tweaks: stronger contrast and clearer hover/active state */
.pagination .page-link {
  padding: 0.38rem 0.75rem;
  color: #e8eef7;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.pagination .page-link:hover,
.pagination .page-link:focus {
  color: #fff;
  background: rgba(140, 199, 255, 0.22);
}

.pagination .page-item.active .page-link,
.pagination .page-item.active>a {
  background: #f2c94c;
  color: #07111f;
  border-color: #f2c94c;
}

.pagination .page-item.disabled .page-link {
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.pagination {
  gap: 6px;
}

/* Searchable Dropdown Styles */
.searchable-dropdown-wrapper {
  position: relative;
}

.searchable-dropdown-input {
  background-color: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #e8eef7 !important;
  border-radius: 6px !important;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.searchable-dropdown-input:focus {
  background-color: rgba(255, 255, 255, 0.08) !important;
  border-color: #86b7fe !important;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25) !important;
  color: #e8eef7 !important;
}

.searchable-dropdown-input::placeholder {
  color: rgba(232, 238, 247, 0.6) !important;
}

/* Ensure the select element maintains proper spacing */
.searchable-dropdown-wrapper .form-select {
  margin-top: 0 !important;
}

.quiz-association-picker {
  min-width: 0;
}

.quiz-association-count {
  color: #8cc7ff;
  font-size: 0.82rem;
  font-weight: 700;
}

.quiz-association-search {
  margin-bottom: 0.5rem;
}

.quiz-association-options {
  max-height: 245px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(5, 12, 24, 0.42);
}

.quiz-association-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 10px 12px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.quiz-association-option:last-of-type {
  border-bottom: 0;
}

.quiz-association-option:hover,
.quiz-association-option:has(input:checked) {
  background: rgba(140, 199, 255, 0.1);
}

.quiz-association-option input {
  width: 1rem;
  height: 1rem;
  accent-color: #8cc7ff;
}

.quiz-association-name {
  min-width: 0;
  overflow-wrap: anywhere;
}

.quiz-association-id {
  color: rgba(232, 238, 247, 0.56);
  font-size: 0.75rem;
}

.dashboard-alert {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-alert-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.severity-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.severity-pill.warning {
  background: rgba(242, 201, 76, 0.14);
  color: #ffd26b;
}

.severity-pill.critical {
  background: rgba(255, 111, 97, 0.14);
  color: #ff968f;
}

.severity-pill.info {
  background: rgba(140, 199, 255, 0.14);
  color: #8cc7ff;
}

.severity-pill.success {
  background: rgba(65, 208, 132, 0.14);
  color: #7be5a2;
}

.state-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.state-badge--success {
  background: rgba(65, 208, 132, 0.14);
  color: #7be5a2;
  border-color: rgba(65, 208, 132, 0.22);
}

.state-badge--danger {
  background: rgba(255, 111, 97, 0.14);
  color: #ff968f;
  border-color: rgba(255, 111, 97, 0.22);
}

.state-badge--neutral {
  background: rgba(140, 199, 255, 0.14);
  color: #8cc7ff;
  border-color: rgba(140, 199, 255, 0.22);
}

.dashboard-alert-title {
  margin: 0;
  font-weight: 700;
}

.dashboard-alert-copy {
  margin: 0;
  color: rgba(232, 238, 247, 0.72);
  font-size: 0.92rem;
}

.dashboard-chart-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.trend-list,
.cohort-list {
  display: grid;
  gap: 10px;
}

.trend-row,
.cohort-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.trend-label,
.cohort-label {
  color: rgba(232, 238, 247, 0.74);
  font-size: 0.88rem;
}

.trend-track,
.cohort-track {
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.trend-fill,
.cohort-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, #f2c94c, #f2994a);
}

.trend-value,
.cohort-value {
  font-weight: 700;
  color: #fff;
  min-width: 44px;
  text-align: right;
}

.dashboard-summary-note {
  color: rgba(232, 238, 247, 0.72);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.dashboard-empty {
  color: rgba(232, 238, 247, 0.7);
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.12);
}

.panel-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.module-list {
  display: grid;
  gap: 10px;
}

.module-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.module-item span {
  color: rgba(232, 238, 247, 0.72);
  font-size: 0.92rem;
}

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.login-card {
  width: min(480px, 100%);
  padding: 30px;
  border-radius: 26px;
  background: rgba(10, 18, 33, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.36);
}

.login-heading {
  margin-bottom: 8px;
  font-size: 1.8rem;
  font-weight: 800;
}

.login-copy {
  color: rgba(232, 238, 247, 0.72);
  margin-bottom: 22px;
}

.form-label {
  color: rgba(232, 238, 247, 0.82);
}

.form-control {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: #e8eef7;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: #8cc7ff;
  color: #fff;
  box-shadow: 0 0 0 0.15rem rgba(140, 199, 255, 0.18);
}

.text-danger {
  color: #ff8a80 !important;
}

/* Statistics and detail panels */
.stat-box {
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  transition: all 0.2s ease;
}

.stat-box:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #f2c94c;
  margin-bottom: 8px;
}

.stat-label {
  color: rgba(232, 238, 247, 0.72);
  font-size: 0.9rem;
}

@media (max-width: 1080px) {
  .shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .metric-grid,
  .panel-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dashboard-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .dashboard-hero-actions {
    justify-content: flex-start;
  }

  .dashboard-chart-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .main-panel {
    padding: 16px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .metric-grid,
  .panel-grid {
    grid-template-columns: 1fr;
  }
}

/* Image Preview Frame Styles */
.question-image-preview-frame,
.description-image-preview-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0d1520;
  border: 2px dashed #495057;
  border-radius: 8px;
  min-height: 200px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.question-image-preview-frame:hover,
.description-image-preview-frame:hover {
  border-color: #8cc7ff;
  background-color: rgba(140, 199, 255, 0.05);
}

.question-image-preview-frame img,
.description-image-preview-frame img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

.image-preview-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #8cc7ff;
  text-align: center;
  gap: 12px;
}

.image-preview-empty-state svg {
  width: 48px;
  height: 48px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  opacity: 0.7;
}

.image-preview-empty-state p {
  margin: 0;
  font-size: 0.95rem;
  color: #cbd5e1;
}

/* Image section cards */
.image-section-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background-color: rgba(13, 21, 32, 0.5);
  backdrop-filter: blur(10px);
}

.image-section-card .card-title {
  color: #f5f8fc;
  font-weight: 600;
  margin-bottom: 8px;
}

.image-section-card .card-text {
  font-size: 0.875rem;
  color: #cbd5e1;
  margin-bottom: 16px;
}

/* Image dimension info */
.image-dimensions-info {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-top: 8px;
  padding: 8px 12px;
  background-color: rgba(15, 23, 42, 0.5);
  border-radius: 6px;
  border-left: 3px solid #8cc7ff;
}

/* Upload field styling */
.image-upload-field {
  cursor: pointer;
  transition: all 0.2s ease;
}

.image-upload-field:hover .form-control {
  border-color: #8cc7ff;
  background-color: rgba(140, 199, 255, 0.05);
}

.form-control[type="file"] {
  cursor: pointer;
}

/* View full size button */
.btn-view-full-size {
  font-size: 0.875rem;
  padding: 6px 12px;
  border-radius: 6px;
}
.question-image-preview-frame {
  align-items: center;
  background: rgba(7, 14, 27, 0.48);
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 0.75rem;
  display: flex;
  justify-content: center;
  min-height: 180px;
  overflow: hidden;
  padding: 0.75rem;
}

.question-image-preview-frame img {
  max-width: 100%;
  width: auto;
}

.jalali-datetime-display {
  cursor: pointer;
  direction: rtl;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.jalali-timezone-note {
  color: var(--bs-secondary-color);
  font-size: 0.8em;
  font-weight: 400;
}

.jalali-picker-dialog {
  background: transparent;
  border: 0;
  color: var(--bs-body-color);
  max-width: min(94vw, 420px);
  padding: 0;
  width: 100%;
}

.jalali-picker-dialog::backdrop {
  background: rgba(2, 8, 23, 0.72);
  backdrop-filter: blur(2px);
}

.jalali-picker-card {
  background: #121c2e;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 1rem;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
  padding: 1rem;
}

.jalali-picker-header,
.jalali-time-row,
.jalali-picker-actions {
  align-items: center;
  display: flex;
}

.jalali-picker-header {
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.jalali-picker-header button {
  align-items: center;
  background: rgba(96, 165, 250, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 0.55rem;
  color: #dbeafe;
  display: inline-flex;
  font-size: 1.35rem;
  height: 2.25rem;
  justify-content: center;
  width: 2.5rem;
}

.jalali-month-title {
  color: #f8fafc;
  font-size: 1.05rem;
}

.jalali-weekdays,
.jalali-days {
  display: grid;
  gap: 0.35rem;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.jalali-weekdays {
  color: #93c5fd;
  font-size: 0.8rem;
  margin-bottom: 0.35rem;
}

.jalali-day {
  aspect-ratio: 1;
  background: rgba(30, 41, 59, 0.85);
  border: 1px solid transparent;
  border-radius: 0.55rem;
  color: #e2e8f0;
}

.jalali-day:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(96, 165, 250, 0.65);
}

.jalali-day.selected {
  background: #2563eb;
  border-color: #93c5fd;
  color: #fff;
}

.jalali-time-row {
  direction: rtl;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.jalali-time-row label {
  align-items: center;
  display: flex;
  gap: 0.4rem;
}

.jalali-time-row input {
  background: #0b1322;
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 0.45rem;
  color: #f8fafc;
  padding: 0.35rem;
  text-align: center;
  width: 4rem;
}

.jalali-picker-actions {
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-start;
  margin-top: 1rem;
}
