:root {
  --bg: #f3efe6;
  --bg-2: #e7e0d2;
  --ink: #142a22;
  --muted: #5d675f;
  --card: rgba(255, 252, 246, 0.92);
  --line: rgba(20, 42, 34, 0.12);
  --brand: #0f3d3e;
  --brand-2: #1f6f6a;
  --accent: #c45c26;
  --ok: #1f7a4c;
  --warn: #b7811a;
  --bad: #b42318;
  /* Calendario: menta / coral / dorado (como logo) */
  --cal-libre: #b5ddd6;
  --cal-ocupado: #e86a45;
  --cal-pendiente: #f0c84a;
  --shadow: 0 10px 30px rgba(20, 42, 34, 0.08);
  --radius: 18px;
  --nav-h: 72px;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, #d8efe8 0%, transparent 55%),
    radial-gradient(900px 400px at 100% 0%, #f3d9c4 0%, transparent 50%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  min-height: 100vh;
}

.app-shell {
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  min-height: 100vh;
  padding: 16px 16px calc(var(--nav-h) + 20px);
  overflow-x: hidden;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.brand {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-2);
  font-weight: 700;
}
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  background: #0f3d3e;
  box-shadow: 0 2px 8px rgba(15, 61, 62, 0.16);
}
.brand-lockup-word .brand-name {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: none;
}
.brand-tahe { color: var(--brand); }
.brand-rent { color: #c45c26; }
.brand-lockup-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  width: 100%;
}
.brand-lockup-hero .brand-name {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: clamp(1.6rem, 5vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: none;
}
.brand-hero-svg,
.brand-hero {
  display: block;
  width: min(132px, 38vw);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 12px 36px rgba(15, 61, 62, 0.28);
  background: #0f3d3e;
  flex-shrink: 0;
}
.topbar-login {
  justify-content: center;
  margin-bottom: 8px;
}
.page-login .app-shell {
  padding-top: 20px;
}
.login-brand {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 8px;
  margin: 16px auto 20px;
  width: 100%;
}
.login-brand h1 {
  margin: 0;
  font-size: 1.65rem;
}
.topbar h1 {
  margin: 2px 0 0;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.15;
}

.content {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.content > * {
  min-width: 0;
  max-width: 100%;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px;
  overflow: hidden;
  max-width: 100%;
}
.card h2, .card h3 {
  margin: 0 0 10px;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.1rem;
}
.muted { color: var(--muted); font-size: 0.92rem; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.stat {
  background: linear-gradient(160deg, #123f40, #1f6f6a);
  color: #f7f3ea;
  border-radius: 16px;
  padding: 14px;
}
.stat .label { opacity: 0.8; font-size: 0.8rem; }
.stat .value {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.45rem;
  margin-top: 4px;
}

.list { display: grid; gap: 10px; }
.item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}
.item:active { transform: scale(0.99); }
.item .title { font-weight: 700; }
.item .meta { color: var(--muted); font-size: 0.85rem; margin-top: 3px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}
.badge-ok { background: #d9f5e5; color: var(--ok); }
.badge-warn { background: #fff0cc; color: var(--warn); }
.badge-bad { background: #fde2e0; color: var(--bad); }
.badge-muted { background: #eceae4; color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  border-radius: 12px;
  padding: 11px 14px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary { background: var(--brand); color: #f7f3ea; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-ghost {
  background: rgba(255,255,255,0.65);
  color: var(--brand);
  border: 1px solid var(--line);
}
.btn-block { width: 100%; }
.btn-row { display: flex; gap: 8px; flex-wrap: wrap; }
/* Acciones del formulario: 2 por fila (2×2 si hay 4) */
.btn-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
  padding-top: 4px;
}
.btn-actions .btn {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 1px 0 rgba(20, 42, 34, 0.04);
  transition: transform 0.12s ease, filter 0.12s ease;
}
.btn-actions .btn:active {
  transform: scale(0.98);
  filter: brightness(0.97);
}
.btn-actions .btn-primary {
  box-shadow: 0 2px 8px rgba(15, 61, 62, 0.18);
}
.btn-actions .wa-btn {
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.22);
}
.btn-danger-soft {
  background: #fde8e6;
  color: #b42318;
  border: 1px solid rgba(180, 35, 24, 0.18);
}
.btn-actions .btn-ghost {
  background: #fff;
  border: 1px solid var(--line);
}
/* Un solo botón: no estirar a media fila */
.btn-actions:has(> :only-child) {
  grid-template-columns: 1fr;
  max-width: 220px;
}

label.field {
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}
input, select, textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
textarea { min-height: 80px; resize: vertical; }
.form-grid {
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

img {
  max-width: 100%;
}

.flash {
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 12px;
  font-weight: 600;
}
.flash-ok { background: #d9f5e5; color: var(--ok); }
.flash-bad { background: #fde2e0; color: var(--bad); }
.flash-warn { background: #fff0cc; color: var(--warn); }

.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.cal-nav-btn {
  min-width: 44px;
  font-size: 1.2rem;
  padding-left: 12px;
  padding-right: 12px;
}
.cal-nav-title {
  text-align: center;
  flex: 1;
  min-width: 0;
}
.cal-nav-title strong {
  display: block;
  font-size: 1.05rem;
  text-transform: capitalize;
}
.cal-nav-today {
  display: inline-block;
  margin-top: 2px;
  font-size: 0.78rem;
  color: var(--brand-2);
  font-weight: 600;
  text-decoration: none;
}
.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--muted);
}
.cal-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cal-swatch {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  flex-shrink: 0;
}
.cal-swatch.cell-libre { background: var(--cal-libre); }
.cal-swatch.cell-ocupado { background: var(--cal-ocupado); }
.cal-swatch.cell-pendiente { background: var(--cal-pendiente); }
.cal-hint {
  margin: 6px 0 0;
  font-size: 0.8rem;
}
/* Calendario mensual: nombre + todos los días del mes, sin scroll horizontal */
.cal-card { padding: 10px; overflow: hidden; }
.cal-month {
  --cal-days: 31;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.cal-month-head,
.cal-month-row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 6px;
  align-items: center;
  width: 100%;
}
.cal-month-head {
  margin-bottom: 4px;
}
.cal-month-row {
  margin-top: 5px;
}
.cal-apto-slot {
  min-width: 0;
}
.cal-apto-name {
  display: block;
  font-weight: 700;
  font-size: 0.78rem;
  line-height: 1.15;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cal-days {
  display: grid;
  grid-template-columns: repeat(var(--cal-days), minmax(0, 1fr));
  gap: 2px;
  min-width: 0;
  width: 100%;
}
.cal-daynum {
  text-align: center;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.2;
  min-width: 0;
}
.cal-daynum.is-today {
  color: var(--brand);
  font-weight: 800;
}
.cal-cell {
  display: block;
  min-width: 0;
  width: 100%;
  aspect-ratio: 1 / 1.35;
  min-height: 18px;
  max-height: 28px;
  border-radius: 4px;
  text-decoration: none;
  box-sizing: border-box;
}
.cal-cell.cell-libre { background: var(--cal-libre); }
.cal-cell.cell-ocupado { background: var(--cal-ocupado); }
.cal-cell.cell-pendiente { background: var(--cal-pendiente); }
.cal-cell.is-today {
  box-shadow: inset 0 0 0 1.5px var(--brand-2);
}
a.cal-cell:active {
  filter: brightness(0.95);
}

.check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}
.check:last-child { border-bottom: 0; }
.check input { width: 18px; height: 18px; accent-color: var(--brand-2); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.field-label {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}
.id-doc-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.id-doc-actions .btn {
  width: 100%;
  min-height: 40px;
  padding: 8px 10px;
  font-size: 0.86rem;
}
@media (hover: hover) and (pointer: fine) {
  .only-touch { display: none !important; }
  .id-doc-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 420px) {
  .id-doc-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.id-doc-preview {
  margin-bottom: 8px;
}
.id-doc-preview img {
  display: block;
  max-width: 100%;
  max-height: 160px;
  border-radius: 10px;
  border: 1px solid var(--line);
  object-fit: cover;
}
.wa-btn {
  background: #25d366;
  color: #fff;
}
.wa-btn-soft {
  background: #128c7e;
}
.wa-banner {
  margin-bottom: 12px;
  border: 1px solid rgba(37, 211, 102, 0.35);
  background: rgba(37, 211, 102, 0.08);
}
.pwa-install-wrap {
  margin-top: 14px;
}
.page-login .pwa-install-wrap {
  margin-top: 16px;
}
.pwa-install-help {
  font-size: 0.82rem;
  line-height: 1.35;
  margin: 8px 0 0;
}

.bottom-nav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: min(560px, 100vw);
  max-width: 100%;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: rgba(255, 252, 246, 0.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 8px 4px calc(8px + env(safe-area-inset-bottom));
  z-index: 20;
  box-sizing: border-box;
}
.bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
}
.bottom-nav a.active { color: var(--brand); }
.nav-ico { font-size: 1.05rem; line-height: 1; }

.empty {
  text-align: center;
  padding: 24px 12px;
  color: var(--muted);
}

/* Fotos apartamento (estilo booking) */
.photo-gallery { padding: 10px; overflow: hidden; max-width: 100%; }
.photo-hero {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #d9e2dc;
  width: 100%;
  max-width: 100%;
}
.photo-hero img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
}
.photo-hero--empty,
.apto-card-img--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 600;
  background: linear-gradient(145deg, #e7efe9, #d5e0d8);
  width: 100%;
  height: 100%;
  min-height: 140px;
}
.photo-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  background: rgba(15, 61, 62, 0.9);
  color: #f7f3ea;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 999px;
  z-index: 2;
}
.photo-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 61, 62, 0.78);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.photo-nav:active { transform: translateY(-50%) scale(0.96); }
.photo-nav-prev { left: 8px; }
.photo-nav-next { right: 8px; }
.photo-counter {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  background: rgba(15, 61, 62, 0.85);
  color: #f7f3ea;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 999px;
}
.photo-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 8px;
}
.photo-thumb {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  background: #d9e2dc;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  border: 2px solid transparent;
  cursor: pointer;
  display: block;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
}
.photo-thumb.is-main { border-color: var(--brand-2); }
.photo-thumb.is-active {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand);
}
.photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.photo-manage { display: grid; gap: 10px; width: 100%; max-width: 100%; }
.photo-manage-item {
  display: grid;
  grid-template-columns: 28px 88px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: grab;
  touch-action: manipulation;
  max-width: 100%;
  min-width: 0;
}
.photo-manage-item.is-dragging { opacity: 0.55; cursor: grabbing; }
.photo-drag-handle {
  font-size: 1.2rem;
  color: #98a2b3;
  text-align: center;
  user-select: none;
  line-height: 1;
}
.photo-manage-item.is-main { border-color: var(--brand-2); background: #eef7f5; }
.photo-manage-item img {
  width: 88px;
  height: 66px;
  max-width: 88px;
  object-fit: cover;
  border-radius: 8px;
  pointer-events: none;
}
.photo-manage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  min-width: 0;
  max-width: 100%;
}
.photo-move-btns { display: inline-flex; gap: 4px; }
.photo-move {
  padding: 6px 10px !important;
  font-size: 1rem !important;
  min-width: 36px;
  font-weight: 700;
}
.photo-move:disabled { opacity: 0.35; }
.photo-pos { font-size: 0.8rem; min-width: 28px; }

.apto-cards { display: grid; gap: 12px; }
.apto-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.apto-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.apto-lugar {
  font-weight: 600;
  color: var(--brand-2);
  font-size: 0.92rem;
  margin: 2px 0 6px;
}
.apto-card-maps {
  padding: 0 12px 12px;
}
.apto-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 2px 14px 14px;
}
a.apto-chip,
button.apto-chip {
  appearance: none !important;
  -webkit-appearance: none !important;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 7px 12px 7px 8px;
  border: 0 !important;
  border-radius: 999px;
  background: rgba(15, 61, 62, 0.07) !important;
  color: var(--brand) !important;
  font-family: "DM Sans", system-ui, sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none !important;
  box-shadow: none !important;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.15s ease, transform 0.12s ease;
}
a.apto-chip:hover,
button.apto-chip:hover {
  background: rgba(15, 61, 62, 0.12) !important;
}
a.apto-chip:active,
button.apto-chip:active {
  transform: scale(0.97);
}
.apto-chip__ico {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.apto-chip__ico svg {
  width: 14px;
  height: 14px;
  display: block;
}
.apto-chip--maps .apto-chip__ico {
  background: #c45c26;
  color: #fff;
}
.apto-chip--share .apto-chip__ico {
  background: var(--brand);
  color: #fff;
}
.apto-chip--maps {
  background: rgba(196, 92, 38, 0.12) !important;
  color: #9a4318 !important;
}
.apto-chip--share {
  background: rgba(15, 61, 62, 0.09) !important;
  color: var(--brand) !important;
}
.apto-card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #d9e2dc;
}
.apto-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.apto-card-badge {
  position: absolute;
  right: 10px;
  top: 10px;
}
.apto-card-body { padding: 12px; }
.apto-card-body .title { font-weight: 700; margin-bottom: 4px; }

.btn-maps {
  background: rgba(196, 92, 38, 0.12);
  color: #c45c26;
  border: 1px solid rgba(196, 92, 38, 0.35);
  font-size: 0.9rem;
  padding: 10px 14px;
}
.btn-maps:active { background: rgba(196, 92, 38, 0.2); }

.apto-card-body .btn-maps {
  display: inline-flex;
  width: auto;
  padding: 7px 12px;
  font-size: 0.82rem;
}

.electro-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.electro-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}
.electro-chip input { width: 15px; height: 15px; accent-color: var(--brand-2); }
.electro-chip:has(input:checked) {
  background: #e8f5f2;
  border-color: var(--brand-2);
  color: var(--brand);
}

html[dir="rtl"] body {
  font-family: "Noto Sans Arabic", "DM Sans", system-ui, sans-serif;
}

.aide-doc {
  font-size: 0.92rem;
  line-height: 1.55;
}
.aide-doc h1 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.35rem;
  margin: 0 0 12px;
  color: var(--brand);
}
.aide-doc h2 {
  font-size: 1.05rem;
  margin: 22px 0 8px;
  color: var(--brand);
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.aide-doc h2:first-of-type { border-top: 0; padding-top: 0; }
.aide-doc h3 {
  font-size: 0.95rem;
  margin: 14px 0 6px;
  color: var(--ink);
}
.aide-doc p { margin: 0 0 10px; }
.aide-doc ul, .aide-doc ol {
  margin: 0 0 12px;
  padding-inline-start: 1.25rem;
}
.aide-doc li { margin: 4px 0; }
.aide-doc code {
  font-size: 0.85em;
  background: rgba(15, 61, 62, 0.08);
  padding: 1px 6px;
  border-radius: 6px;
}
.aide-doc hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 16px 0;
}
.aide-table-wrap {
  overflow-x: auto;
  margin: 0 0 14px;
  -webkit-overflow-scrolling: touch;
}
.aide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.aide-table th,
.aide-table td {
  border: 1px solid var(--line);
  padding: 8px 10px;
  text-align: start;
  vertical-align: top;
}
.aide-table th {
  background: rgba(15, 61, 62, 0.06);
  font-weight: 700;
}
.aide-doc--rtl {
  font-family: "Noto Sans Arabic", "DM Sans", system-ui, sans-serif;
}

