/* Small standalone additions that are not part of the inherited public-site bundle. */
@media (min-width: 1024px) {
  .shahbaz-dashboard-frame {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
  }
}

:root {
  --shahbaz-indigo: #464d77;
  --shahbaz-indigo-deep: #2f3558;
  --shahbaz-teal: #36827f;
  --shahbaz-gold: #f9db6d;
  --shahbaz-cream: #f4eded;
  --shahbaz-white: #fff;
}

.auth-page {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: clamp(0.75rem, 2.5vw, 2rem);
  background:
    radial-gradient(circle at 8% 10%, rgba(249, 219, 109, 0.16), transparent 28rem),
    var(--shahbaz-indigo-deep);
  color: var(--shahbaz-indigo);
  font-family: Vazirmatn, Tahoma, sans-serif;
}

.auth-shell {
  direction: ltr;
  width: min(1180px, 100%);
  min-height: min(760px, calc(100vh - 4rem));
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 2rem;
  background: var(--shahbaz-cream);
  box-shadow: 0 35px 100px rgba(10, 15, 40, 0.35);
}

.auth-form-panel {
  direction: rtl;
  grid-column: 1;
  display: grid;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 4.5rem);
  background:
    radial-gradient(circle at 0 100%, rgba(54, 130, 127, 0.09), transparent 20rem),
    var(--shahbaz-cream);
}

.auth-form-inner {
  width: min(440px, 100%);
  margin-inline: auto;
}

.auth-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--shahbaz-indigo);
  text-decoration: none;
}

.auth-brand img {
  width: 3.7rem;
  height: 3.7rem;
  object-fit: contain;
}

.auth-brand strong,
.auth-brand small {
  display: block;
}

.auth-brand strong {
  font-size: 0.82rem;
  font-weight: 900;
}

.auth-brand small {
  margin-top: 0.3rem;
  color: rgba(70, 77, 119, 0.55);
  font-size: 0.64rem;
  font-weight: 700;
}

.auth-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
  margin-top: 2rem;
  padding: 0.35rem;
  border: 1px solid rgba(70, 77, 119, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.auth-switch a {
  border-radius: 999px;
  padding: 0.72rem 1rem;
  color: rgba(70, 77, 119, 0.55);
  text-align: center;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 900;
  transition: 180ms ease;
}

.auth-switch a:hover {
  color: var(--shahbaz-indigo);
}

.auth-switch a.active {
  background: var(--shahbaz-indigo);
  color: var(--shahbaz-white);
  box-shadow: 0 10px 25px rgba(70, 77, 119, 0.18);
}

.auth-heading {
  margin-top: 2rem;
}

.auth-heading > span {
  color: var(--shahbaz-teal);
  font-size: 0.68rem;
  font-weight: 900;
}

.auth-heading h1 {
  margin: 0.65rem 0 0;
  color: var(--shahbaz-indigo-deep);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 950;
  line-height: 1.45;
}

.auth-heading p {
  margin: 0.6rem 0 0;
  color: rgba(70, 77, 119, 0.62);
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 2;
}

.auth-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.55rem;
}

.auth-name-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.auth-field {
  display: grid;
  gap: 0.48rem;
  min-width: 0;
  color: var(--shahbaz-indigo-deep);
  font-size: 0.7rem;
  font-weight: 900;
}

.auth-input {
  width: 100%;
  min-height: 3.25rem;
  box-sizing: border-box;
  border: 1px solid rgba(70, 77, 119, 0.13);
  border-radius: 1rem;
  outline: 0;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.75rem 1rem;
  color: var(--shahbaz-indigo-deep);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.auth-input:hover {
  border-color: rgba(70, 77, 119, 0.25);
}

.auth-input:focus {
  border-color: var(--shahbaz-teal);
  background: var(--shahbaz-white);
  box-shadow: 0 0 0 4px rgba(54, 130, 127, 0.1);
}

.auth-password-control {
  position: relative;
}

.auth-password-control .auth-input {
  padding-inline-end: 3.35rem;
}

.auth-password-toggle {
  position: absolute;
  inset-block: 0;
  inset-inline-end: 0.55rem;
  width: 2.25rem;
  height: 2.25rem;
  margin-block: auto;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0.75rem;
  background: transparent;
  color: rgba(70, 77, 119, 0.58);
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.auth-password-toggle:hover,
.auth-password-toggle[aria-pressed="true"] {
  background: rgba(54, 130, 127, 0.09);
  color: var(--shahbaz-teal);
}

.auth-password-toggle:active {
  transform: scale(0.94);
}

.auth-password-toggle:focus-visible {
  outline: 3px solid rgba(54, 130, 127, 0.22);
  outline-offset: 1px;
}

.auth-password-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.auth-password-toggle svg[hidden] {
  display: none;
}

.auth-field-error {
  color: #b32b4c;
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1.8;
}

.auth-form-alert {
  margin-top: 1.25rem;
  border: 1px solid rgba(179, 43, 76, 0.18);
  border-radius: 1rem;
  background: rgba(255, 240, 244, 0.9);
  padding: 0.85rem 1rem;
  color: #a62343;
  font-size: 0.7rem;
  font-weight: 850;
  line-height: 1.9;
}

.auth-password-note {
  margin: -0.5rem 0 0;
  color: rgba(70, 77, 119, 0.5);
  font-size: 0.63rem;
  font-weight: 700;
  line-height: 1.8;
}

.auth-submit {
  min-height: 3.35rem;
  margin-top: 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 0;
  border-radius: 1rem;
  background: var(--shahbaz-teal);
  color: var(--shahbaz-white);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 16px 35px rgba(54, 130, 127, 0.2);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.auth-submit:hover {
  transform: translateY(-2px);
  background: var(--shahbaz-indigo);
  box-shadow: 0 18px 38px rgba(70, 77, 119, 0.22);
}

.auth-submit:focus-visible,
.auth-switch a:focus-visible,
.auth-return a:focus-visible,
.auth-brand:focus-visible {
  outline: 3px solid rgba(249, 219, 109, 0.9);
  outline-offset: 3px;
}

.auth-secondary-action {
  margin: 1.25rem 0 0;
  color: rgba(70, 77, 119, 0.58);
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.auth-secondary-action a {
  color: var(--shahbaz-teal);
  font-weight: 950;
  text-decoration: none;
}

.auth-return {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  border-top: 1px solid rgba(70, 77, 119, 0.1);
  padding-top: 1.1rem;
  color: rgba(70, 77, 119, 0.46);
  font-size: 0.62rem;
  font-weight: 750;
}

.auth-return a {
  color: var(--shahbaz-indigo);
  text-decoration: none;
  font-weight: 900;
}

.auth-visual {
  direction: rtl;
  grid-column: 2;
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--shahbaz-indigo);
  color: var(--shahbaz-white);
}

.auth-visual > img:not(.auth-visual-logo) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auth-visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(155deg, rgba(28, 34, 67, 0.42), rgba(35, 41, 78, 0.9) 76%),
    linear-gradient(0deg, rgba(54, 130, 127, 0.15), transparent 60%);
}

.auth-visual-content {
  position: relative;
  z-index: 1;
  min-height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 5vw, 4.8rem);
}

.auth-visual-logo {
  width: 6.8rem;
  height: 5.2rem;
  margin-bottom: auto;
  object-fit: contain;
  object-position: right center;
}

.auth-visual-kicker {
  color: var(--shahbaz-gold);
  font-size: 0.72rem;
  font-weight: 950;
}

.auth-visual h2 {
  max-width: 31rem;
  margin: 0.85rem 0 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 950;
  line-height: 1.55;
  text-wrap: balance;
}

.auth-visual p {
  max-width: 32rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 2.1;
}

.auth-visual-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.auth-visual-points span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  padding: 0.55rem 0.8rem;
  font-size: 0.62rem;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

@media (max-width: 860px) {
  .auth-page {
    display: block;
    padding: 0;
    background: var(--shahbaz-cream);
  }

  .auth-shell {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .auth-form-panel {
    order: 1;
    min-height: 100vh;
    padding: 1.4rem;
  }

  .auth-form-inner {
    padding-block: 0.5rem;
  }

  .auth-visual {
    order: 2;
    min-height: 21rem;
  }

  .auth-visual-logo {
    margin-bottom: 4rem;
  }
}

@media (max-width: 520px) {
  .auth-name-grid {
    grid-template-columns: 1fr;
  }

  .auth-heading {
    margin-top: 1.5rem;
  }

  .auth-switch {
    margin-top: 1.4rem;
  }

  .auth-return {
    justify-content: center;
    text-align: center;
  }
}

/* Independent Shahbaz billing workspace */
.dashboard-nav-link{border-radius:1rem;padding:.8rem 1rem;background:rgba(255,255,255,.06);transition:.2s ease}
.dashboard-nav-link:hover{background:rgba(255,255,255,.11);transform:translateY(-1px)}
.dashboard-nav-link.is-active{background:#F9DB6D;color:#464D77;box-shadow:0 12px 30px rgba(249,219,109,.15)}
.dashboard-nav-accordion{grid-column:1/-1;min-width:0}.dashboard-nav-accordion summary{display:flex;width:100%;align-items:center;justify-content:space-between;gap:.75rem;list-style:none;cursor:pointer}.dashboard-nav-accordion summary::-webkit-details-marker{display:none}.dashboard-nav-accordion summary svg{width:.9rem;height:.9rem;flex:none;transition:transform .2s ease}.dashboard-nav-accordion[open] summary svg{transform:rotate(180deg)}.dashboard-nav-submenu{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.55rem;margin-top:.45rem;padding:.35rem}.dashboard-nav-group{display:grid;align-content:start;gap:.35rem;min-width:0;border:1px solid rgba(255,255,255,.07);border-radius:.9rem;padding:.45rem}.dashboard-nav-group-title{padding:.35rem .45rem .2rem;color:rgba(255,255,255,.48);font-size:.5rem;line-height:1.6}.dashboard-nav-submenu a{min-width:0;border-right:2px solid rgba(255,255,255,.12);border-radius:.75rem;background:rgba(255,255,255,.035);padding:.68rem .75rem;color:rgba(255,255,255,.72);line-height:1.55;transition:.2s ease}.dashboard-nav-submenu a:hover{border-right-color:rgba(249,219,109,.55);background:rgba(255,255,255,.09);color:#fff}.dashboard-nav-submenu a.is-active{border-right-color:#F9DB6D;background:rgba(249,219,109,.12);color:#F9DB6D}
.shahbaz-dashboard-sidebar{overflow-y:auto}.dashboard-pricing-submenu{grid-template-columns:1fr 1fr}.mobile-nav-group-title{grid-column:1/-1;padding:.4rem .2rem 0;color:rgba(70,77,119,.48);font-size:.48rem;font-weight:950}
.dashboard-utility-bar{display:flex;min-height:3.75rem;align-items:center;justify-content:space-between;gap:1rem;border:1px solid rgba(70,77,119,.09);border-radius:1.4rem;background:rgba(255,255,255,.94);padding:.55rem .75rem;box-shadow:0 14px 45px rgba(70,77,119,.07);backdrop-filter:blur(14px)}.dashboard-utility-status,.dashboard-utility-actions{display:flex;align-items:center;gap:.55rem}.dashboard-live-badge,.dashboard-iran-datetime{display:inline-flex;min-height:2.35rem;align-items:center;gap:.55rem;border:1px solid rgba(70,77,119,.07);border-radius:999px;background:#f8f6f6;padding:.45rem .8rem;font-size:.58rem;font-weight:900;white-space:nowrap}.dashboard-live-badge{color:#287673}.dashboard-live-badge>i{width:.55rem;height:.55rem;border-radius:50%;background:#18a89d;box-shadow:0 0 0 5px rgba(24,168,157,.12)}.dashboard-iran-datetime{color:rgba(70,77,119,.72)}.dashboard-iran-datetime time:first-child{color:#287673}.dashboard-iran-datetime>i{width:1px;height:.85rem;background:rgba(70,77,119,.14)}.dashboard-export-label{margin-right:.25rem;font-size:.55rem;font-weight:900;color:rgba(70,77,119,.45);white-space:nowrap}.dashboard-tool-button{display:grid;width:2.4rem;height:2.4rem;place-items:center;border-radius:.8rem;transition:.2s ease}.dashboard-tool-button:hover{transform:translateY(-2px);box-shadow:0 9px 20px rgba(70,77,119,.1)}.dashboard-tool-button:focus-visible{outline:3px solid rgba(54,130,127,.25);outline-offset:2px}.dashboard-tool-button svg{width:1.05rem;height:1.05rem;fill:none;stroke:currentColor;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.8}.dashboard-tool-button.excel{background:#e8f5ee;color:#16834b}.dashboard-tool-button.pdf{background:#fff0f2;color:#b62f4b}.dashboard-tool-button.csv{background:#e8f7f4;color:#287673}.dashboard-tool-button.json{background:#efe8f5;color:#6842a0}.dashboard-tool-button.downloads{background:#fff1e3;color:#a95617}
.dashboard-welcome-card{position:relative;display:flex;min-height:11.25rem;align-items:center;justify-content:space-between;gap:2rem;overflow:hidden;margin-top:1.5rem;border:1px solid rgba(54,130,127,.1);border-radius:2rem;background:linear-gradient(112deg,#fff 48%,#eef8f7 100%);padding:2rem 2.25rem;box-shadow:0 18px 55px rgba(70,77,119,.07)}.dashboard-welcome-card:after{position:absolute;left:-5rem;top:-7rem;width:17rem;height:17rem;border-radius:50%;background:rgba(54,130,127,.06);content:""}.dashboard-welcome-copy{position:relative;z-index:1;min-width:0}.dashboard-welcome-copy>small{display:block;color:#14738a;font-size:.68rem;font-weight:900}.dashboard-welcome-copy h1{margin-top:.55rem;color:#14323d;font-size:2.15rem;font-weight:900;line-height:1.45}.dashboard-welcome-copy h1 span{display:inline-block;transform:rotate(-8deg)}.dashboard-welcome-copy p{margin-top:.45rem;color:rgba(70,77,119,.55);font-size:.82rem;line-height:1.9}.dashboard-quick-invoice{position:relative;z-index:1;display:flex;min-width:10.75rem;align-items:center;gap:.75rem;border:1px solid rgba(249,219,109,.55);border-radius:1.25rem;background:#F9DB6D;padding:.75rem 1rem;color:#353b61;box-shadow:0 14px 32px rgba(197,161,37,.18);transition:.2s ease}.dashboard-quick-invoice:hover{transform:translateY(-2px);box-shadow:0 18px 36px rgba(197,161,37,.24)}.dashboard-quick-invoice:focus-visible{outline:3px solid rgba(54,130,127,.28);outline-offset:3px}.dashboard-quick-invoice>svg{width:1.7rem;height:1.7rem;flex:none;fill:none;stroke:currentColor;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.7}.dashboard-quick-invoice span{display:block}.dashboard-quick-invoice small,.dashboard-quick-invoice b{display:block}.dashboard-quick-invoice small{font-size:.5rem;color:rgba(53,59,97,.62)}.dashboard-quick-invoice b{margin-top:.2rem;font-size:.72rem;font-weight:900}
.dashboard-submit-progress{position:fixed;z-index:150;top:0;left:0;width:100%;height:3px;overflow:hidden;pointer-events:none}.dashboard-submit-progress::after{content:"";display:block;width:100%;height:100%;background:linear-gradient(90deg,#f9db6d,#36827f);opacity:0;transform:scaleX(.02);transform-origin:left}.dashboard-is-submitting .dashboard-submit-progress::after{opacity:1;animation:dashboard-submit-progress 7s cubic-bezier(.1,.65,.2,1) forwards}
.dashboard-messages{position:fixed;z-index:140;top:1rem;left:1rem;width:min(calc(100vw - 2rem),23rem);display:grid;gap:.5rem;pointer-events:none}
.dashboard-message{--dashboard-message-accent:#464d77;position:relative;display:grid;grid-template-columns:2rem minmax(0,1fr);align-items:center;gap:.65rem;overflow:hidden;border:1px solid rgba(70,77,119,.12);border-radius:1rem;background:rgba(255,255,255,.97);padding:.75rem .8rem .85rem;text-align:right;color:#464d77;font-size:.7rem;font-weight:850;box-shadow:0 20px 55px rgba(70,77,119,.18);backdrop-filter:blur(12px);transition:opacity .25s ease,transform .25s ease;animation:dashboard-message-enter .25s ease both}.dashboard-message>i{display:grid;width:2rem;height:2rem;place-items:center;border-radius:.7rem;background:color-mix(in srgb,var(--dashboard-message-accent) 11%,white);color:var(--dashboard-message-accent);font-size:.8rem;font-style:normal;font-weight:950}.dashboard-message>span{line-height:1.7}.dashboard-message-progress{position:absolute;right:0;bottom:0;width:100%;height:3px;background:var(--dashboard-message-accent);transform-origin:right;animation:dashboard-message-countdown 5s linear forwards}.dashboard-message.is-leaving{opacity:0;transform:translateY(-.6rem)}
.dashboard-message-success{--dashboard-message-accent:#287673;border-color:rgba(40,118,115,.22);color:#236c69}.dashboard-message-error{--dashboard-message-accent:#a52a40;border-color:rgba(165,42,64,.18);color:#a52a40}.dashboard-message-warning{--dashboard-message-accent:#947727}.catalog-button.is-submitting{gap:.5rem;opacity:.82;cursor:wait}.catalog-button.is-submitting::before{content:"";width:.8rem;height:.8rem;border:2px solid currentColor;border-left-color:transparent;border-radius:50%;animation:dashboard-spin .7s linear infinite}
@keyframes dashboard-submit-progress{0%{transform:scaleX(.02)}35%{transform:scaleX(.45)}70%{transform:scaleX(.72)}100%{transform:scaleX(.9)}}@keyframes dashboard-message-enter{from{opacity:0;transform:translateY(-.6rem)}to{opacity:1;transform:translateY(0)}}@keyframes dashboard-message-countdown{from{transform:scaleX(1)}to{transform:scaleX(0)}}@keyframes dashboard-spin{to{transform:rotate(360deg)}}
@media(max-width:640px){.dashboard-messages{top:.75rem;left:.75rem;width:calc(100vw - 1.5rem)}}
@media(prefers-reduced-motion:reduce){.dashboard-submit-progress::after,.dashboard-message,.dashboard-message-progress,.catalog-button.is-submitting::before{animation:none}.dashboard-message-progress{transform:scaleX(0)}}
.billing-hero{display:flex;align-items:center;justify-content:space-between;gap:1.5rem;border-radius:2rem;background:#353b61;padding:1.5rem;color:#fff;box-shadow:0 22px 60px rgba(53,59,97,.15)}.billing-hero small{font-size:.6rem;font-weight:900;color:#F9DB6D}.billing-hero h2{margin-top:.55rem;font-size:1.35rem;font-weight:900}.billing-hero p{margin-top:.55rem;max-width:40rem;font-size:.72rem;line-height:1.8;color:rgba(255,255,255,.7)}
.billing-actions,.billing-form-actions{display:flex;flex-wrap:wrap;align-items:center;gap:.65rem}.billing-btn{display:inline-flex;min-height:2.75rem;align-items:center;justify-content:center;border:1px solid transparent;border-radius:999px;padding:.65rem 1.1rem;font-size:.67rem;font-weight:900;transition:.2s ease;white-space:nowrap}.billing-btn:hover{transform:translateY(-2px)}.billing-btn.primary{background:#36827F;color:#fff}.billing-btn.warning{background:#F9DB6D;color:#464D77}.billing-btn.light{border-color:rgba(70,77,119,.14);background:#fff;color:#464D77}.billing-hero .billing-btn.light{border-color:rgba(255,255,255,.16);background:rgba(255,255,255,.1);color:#fff}.billing-btn.danger{background:#fff0f2;color:#a52a40}
.billing-stats{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1rem;margin-top:1rem}.billing-stats article{border:1px solid rgba(70,77,119,.08);border-radius:1.5rem;background:#fff;padding:1.2rem;box-shadow:0 15px 45px rgba(70,77,119,.055)}.billing-stats small{display:block;font-size:.58rem;font-weight:800;color:rgba(70,77,119,.48)}.billing-stats b{display:block;margin-top:.75rem;font-size:1.4rem;font-weight:900;color:#464D77}.billing-stats span{display:block;margin-top:.45rem;font-size:.58rem;color:rgba(70,77,119,.5)}
.billing-grid-2,.billing-grid-3{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1.25rem;margin-top:1.25rem}.billing-grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}.billing-card,.billing-table-card,.billing-form-card,.billing-detail-head{border:1px solid rgba(70,77,119,.08);border-radius:1.75rem;background:#fff;box-shadow:0 18px 55px rgba(70,77,119,.06)}.billing-card.padded,.billing-form-card{padding:1.35rem}.billing-card>header{display:flex;align-items:center;justify-content:space-between;gap:1rem;border-bottom:1px solid rgba(70,77,119,.09);padding:1.2rem}.billing-card header small{font-size:.55rem;font-weight:900;color:#36827F}.billing-card header h3,.billing-card.padded h3{margin-top:.3rem;font-size:.9rem;font-weight:900}.billing-card header>a{font-size:.6rem;font-weight:900;color:#36827F}
.billing-list>a,.billing-list>div{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1rem 1.2rem;border-bottom:1px solid rgba(70,77,119,.08)}.billing-list>a:last-child,.billing-list>div:last-child{border:0}.billing-list a{transition:.2s ease}.billing-list a:hover{background:rgba(54,130,127,.045)}.billing-list span{min-width:0}.billing-list b{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:.7rem}.billing-list small{display:block;margin-top:.35rem;font-size:.55rem;color:rgba(70,77,119,.5)}.billing-list strong{flex:none;font-size:.62rem;color:#36827F}.billing-empty{padding:2rem!important;text-align:center!important;font-size:.68rem!important;line-height:1.8;color:rgba(70,77,119,.48)!important}
.billing-toolbar,.billing-detail-head{display:flex;align-items:center;justify-content:space-between;gap:1rem;margin-bottom:1rem;padding:1rem 1.1rem}.billing-toolbar form{display:flex;min-width:0;flex:1;gap:.5rem}.billing-toolbar form .billing-input{max-width:18rem}.billing-detail-head p{margin-top:.55rem;font-size:.68rem;color:rgba(70,77,119,.55)}
.billing-table-card{overflow:hidden}.billing-table-scroll{overflow-x:auto}.billing-table{width:100%;min-width:48rem;border-collapse:collapse;text-align:right}.billing-table th{background:rgba(70,77,119,.045);padding:.85rem 1rem;font-size:.57rem;color:rgba(70,77,119,.58)}.billing-table td{border-top:1px solid rgba(70,77,119,.075);padding:.9rem 1rem;font-size:.65rem;line-height:1.7}.billing-table td>a{font-weight:900;color:#287673}.billing-table tfoot th{border-top:2px solid rgba(70,77,119,.15);background:#fff}.billing-account-group td{background:rgba(249,219,109,.1);font-weight:900}
.billing-badge{display:inline-flex;border-radius:999px;padding:.35rem .65rem;background:#f1f2f7;color:#61677f;font-size:.55rem;font-weight:900}.billing-badge.success,.billing-badge.issued,.billing-badge.posted,.billing-badge.receipt{background:#e4f5f2;color:#22706c}.billing-badge.warning,.billing-badge.draft{background:#fff5cf;color:#806913}.billing-badge.paid{background:#e4f5e9;color:#287343}.billing-badge.canceled,.billing-badge.returned,.billing-badge.danger,.billing-badge.payment{background:#fff0f2;color:#a52a40}
.billing-input{width:100%;min-height:2.85rem;border:1px solid rgba(70,77,119,.15);border-radius:1rem;background:#fff;padding:.7rem .85rem;font-size:.72rem;color:#464D77;outline:none;transition:.2s ease}.billing-input:focus{border-color:#36827F;box-shadow:0 0 0 4px rgba(54,130,127,.09)}textarea.billing-input{min-height:6rem;resize:vertical}.billing-form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem;margin-top:1.25rem}.billing-field{display:block;min-width:0}.billing-field>span{display:flex;align-items:center;justify-content:space-between;gap:.5rem;margin-bottom:.45rem;font-size:.62rem;font-weight:900}.billing-field>span i{font-size:.48rem;font-style:normal;color:#a52a40}.billing-field>small{display:block;margin-top:.4rem;font-size:.53rem;line-height:1.7;color:rgba(70,77,119,.5)}.billing-field>em{display:block;margin-top:.35rem;font-size:.55rem;font-style:normal;color:#a52a40}.billing-field-check{display:flex!important;align-items:center;gap:.55rem;border:1px solid rgba(70,77,119,.1);border-radius:1rem;padding:.85rem}.billing-field-check>span{margin:0}.billing-check{width:1.1rem;height:1.1rem;accent-color:#36827F}.billing-form-actions{justify-content:flex-end;margin-top:1.25rem;border-top:1px solid rgba(70,77,119,.08);padding-top:1rem}.billing-form-errors{margin-top:1rem;border-radius:1rem;background:#fff0f2;padding:.8rem 1rem;font-size:.62rem;line-height:1.8;color:#a52a40}
.billing-section-title{display:flex;align-items:center;gap:.8rem}.billing-section-title>span{display:grid;width:2.4rem;height:2.4rem;flex:none;place-items:center;border-radius:.9rem;background:#F9DB6D;font-size:.8rem;font-weight:900}.billing-section-title h2{font-size:.85rem;font-weight:900}.billing-section-title p{margin-top:.25rem;font-size:.56rem;line-height:1.7;color:rgba(70,77,119,.5)}.billing-rows{display:grid;gap:.8rem;margin-top:1.2rem}.billing-row-form{border:1px solid rgba(70,77,119,.1);border-radius:1.25rem;background:rgba(244,237,237,.32);padding:1rem}.billing-row-fields{display:grid;grid-template-columns:2fr .7fr .7fr 1fr .8fr auto;gap:.7rem;align-items:end}.billing-row-fields.journal{grid-template-columns:1.2fr 1fr 1.4fr .8fr .8fr auto}.billing-add-row{margin-top:.8rem;border:1px dashed rgba(54,130,127,.35);border-radius:1rem;padding:.75rem 1rem;font-size:.62rem;font-weight:900;color:#287673;transition:.2s ease}.billing-add-row:hover{background:#eaf7f6}.billing-dl{display:grid;gap:.75rem;margin-top:1rem}.billing-dl>div{display:grid;grid-template-columns:8rem 1fr;gap:1rem;border-top:1px solid rgba(70,77,119,.08);padding-top:.7rem;font-size:.65rem}.billing-dl dt{color:rgba(70,77,119,.5)}.billing-dl dd{font-weight:800}.billing-accounting-link{display:flex;align-items:center;gap:1rem;margin-bottom:1rem;border:1px solid rgba(54,130,127,.15);border-radius:1.25rem;background:#eef8f7;padding:1rem}.billing-accounting-link>span{font-size:.62rem;font-weight:900;color:#287673}.billing-accounting-link>p{flex:1;font-size:.6rem;color:rgba(70,77,119,.6)}.billing-accounting-link a{margin-right:.4rem;font-size:.56rem;font-weight:900;color:#287673}
@media(max-width:1100px){.billing-stats{grid-template-columns:repeat(2,minmax(0,1fr))}.billing-grid-3{grid-template-columns:repeat(2,minmax(0,1fr))}.billing-row-fields,.billing-row-fields.journal{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:760px){.dashboard-utility-bar,.billing-hero,.billing-toolbar,.billing-detail-head,.dashboard-welcome-card{align-items:stretch;flex-direction:column}.dashboard-welcome-card{min-height:0;padding:1.5rem}.dashboard-welcome-copy h1{font-size:1.7rem}.dashboard-welcome-copy p{font-size:.72rem}.dashboard-quick-invoice{min-width:0;justify-content:center}.dashboard-utility-status,.dashboard-utility-actions{overflow-x:auto;padding-bottom:.15rem}.dashboard-utility-actions{justify-content:flex-start}.dashboard-export-label{display:none}.billing-toolbar form{flex-direction:column}.billing-toolbar form .billing-input{max-width:none}.billing-grid-2,.billing-grid-3,.billing-form-grid{grid-template-columns:1fr}.billing-stats{grid-template-columns:1fr 1fr}.billing-accounting-link{align-items:flex-start;flex-direction:column}.billing-form-actions{justify-content:stretch}.billing-form-actions .billing-btn{flex:1}.invoice-print-wrap{margin-inline:-.65rem}}
@media(max-width:480px){.billing-stats{grid-template-columns:1fr}.billing-row-fields,.billing-row-fields.journal{grid-template-columns:1fr}}
@media(min-width:1024px){.dashboard-nav-accordion{grid-column:auto}.dashboard-nav-submenu{grid-template-columns:1fr;padding:.35rem .45rem .15rem .15rem}}

/* Business workspace: compact forms, customers, financial calendar, mobile app dock */
.billing-form-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:.75rem;margin-top:1rem}.billing-input{min-height:2.55rem;padding:.55rem .75rem}.billing-form-card.compact-form-card,.compact-form-card{padding:1.1rem}.compact-form-card textarea.billing-input{min-height:4.6rem}.billing-form-grid.single-field{grid-template-columns:1fr}.billing-stats{grid-template-columns:repeat(3,minmax(0,1fr))}
.dashboard-financial-reminders{display:flex;align-items:center;gap:1rem;margin-top:1rem;border:1px solid rgba(249,219,109,.48);border-radius:1.15rem;background:#fff9df;padding:.75rem 1rem;color:#464D77;box-shadow:0 12px 32px rgba(70,77,119,.05)}.dashboard-financial-reminders>div{min-width:7rem}.dashboard-financial-reminders strong,.dashboard-financial-reminders span{display:block}.dashboard-financial-reminders strong{font-size:.65rem}.dashboard-financial-reminders span{margin-top:.18rem;font-size:.48rem;color:rgba(70,77,119,.52)}.dashboard-financial-reminders ul{display:flex;min-width:0;flex:1;align-items:center;gap:.45rem;overflow-x:auto}.dashboard-financial-reminders li{display:flex;flex:none;align-items:center;gap:.5rem;border-radius:.75rem;background:rgba(255,255,255,.75);padding:.5rem .65rem;font-size:.52rem}.dashboard-financial-reminders li a{font-weight:900}.dashboard-financial-reminders li time{color:rgba(70,77,119,.48);font-size:.46rem}.dashboard-reminders-calendar{flex:none;border-radius:999px;background:#464D77;padding:.55rem .8rem;color:#fff;font-size:.5rem;font-weight:900}
.customer-hub-intro,.customer-dossier-head{display:flex;align-items:center;justify-content:space-between;gap:1.5rem;border-radius:1.75rem;background:#353b61;padding:1.5rem;color:#fff;box-shadow:0 20px 55px rgba(53,59,97,.14)}.customer-hub-intro small,.customer-dossier-head>div>span{font-size:.58rem;font-weight:900;color:#F9DB6D}.customer-hub-intro h2,.customer-dossier-head h2{margin-top:.45rem;font-size:1.25rem;font-weight:900}.customer-hub-intro p,.customer-dossier-head p{margin-top:.45rem;max-width:45rem;font-size:.68rem;line-height:1.9;color:rgba(255,255,255,.68)}.customer-hub-intro .billing-btn.light,.customer-dossier-head .billing-btn.light{border-color:rgba(255,255,255,.18);background:rgba(255,255,255,.1);color:#fff}.customer-dossier-head>div:last-child{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:.55rem}
.customer-record-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem}.customer-record-card{display:block;border:1px solid rgba(70,77,119,.08);border-radius:1.5rem;background:#fff;padding:1.15rem;box-shadow:0 16px 45px rgba(70,77,119,.055);transition:.2s ease}.customer-record-card:hover{transform:translateY(-3px);box-shadow:0 20px 48px rgba(70,77,119,.1)}.customer-record-card>span b,.customer-record-card>span small{display:block}.customer-record-card>span b{font-size:.82rem}.customer-record-card>span small{margin-top:.3rem;font-size:.52rem;color:rgba(70,77,119,.45)}.customer-record-card dl{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.55rem;margin-top:1rem}.customer-record-card dl div{border-radius:.8rem;background:#f8f6f6;padding:.55rem}.customer-record-card dt{font-size:.48rem;color:rgba(70,77,119,.45)}.customer-record-card dd{margin-top:.25rem;overflow:hidden;text-overflow:ellipsis;font-size:.6rem;font-weight:900;white-space:nowrap}.customer-record-card>em{display:block;margin-top:.8rem;color:#287673;font-size:.55rem;font-style:normal;font-weight:900}.customer-hub-empty{grid-column:1/-1;border:1px dashed rgba(70,77,119,.18);border-radius:1.5rem;padding:2.5rem;text-align:center}.customer-hub-empty b{font-size:.76rem}.customer-hub-empty p{margin-top:.5rem;font-size:.62rem;color:rgba(70,77,119,.5)}
.customer-incoming-sections{display:grid;gap:.8rem;margin-top:1.25rem}.customer-incoming-sections details{overflow:hidden;border:1px solid rgba(70,77,119,.08);border-radius:1.35rem;background:#fff;box-shadow:0 14px 40px rgba(70,77,119,.045)}.customer-incoming-sections summary{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1rem 1.15rem;list-style:none;cursor:pointer}.customer-incoming-sections summary::-webkit-details-marker{display:none}.customer-incoming-sections summary b,.customer-incoming-sections summary small{display:block}.customer-incoming-sections summary b{font-size:.72rem}.customer-incoming-sections summary small{margin-top:.25rem;font-size:.5rem;color:rgba(70,77,119,.45)}.customer-incoming-sections summary i{font-style:normal;transition:.2s}.customer-incoming-sections details[open] summary i{transform:rotate(180deg)}
.customer-dossier-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1.1rem;margin-top:1.1rem}.dossier-note-list article{border-bottom:1px solid rgba(70,77,119,.08);padding:1rem 1.2rem}.dossier-note-list p{font-size:.65rem;line-height:1.9}.dossier-note-list small{display:block;margin-top:.45rem;font-size:.5rem;color:rgba(70,77,119,.45)}.dossier-document-list>a{display:flex;align-items:center;justify-content:space-between;gap:1rem;border-bottom:1px solid rgba(70,77,119,.08);padding:1rem 1.2rem}.dossier-document-list b,.dossier-document-list small{display:block}.dossier-document-list b{font-size:.65rem}.dossier-document-list small{margin-top:.35rem;font-size:.5rem;color:rgba(70,77,119,.45)}.dossier-document-list em{color:#287673;font-size:.55rem;font-style:normal;font-weight:900}.customer-linked-activity{margin-top:1.1rem;border:1px solid rgba(70,77,119,.08);border-radius:1.5rem;background:#fff;padding:1.2rem}.customer-linked-activity h2{font-size:.74rem;font-weight:900}.customer-linked-activity>div{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.65rem;margin-top:.9rem}.customer-linked-activity article{border-radius:.9rem;background:#f8f6f6;padding:.75rem}.customer-linked-activity b,.customer-linked-activity small{display:block}.customer-linked-activity b{font-size:.58rem}.customer-linked-activity small{margin-top:.3rem;font-size:.48rem;color:rgba(70,77,119,.48)}
.calendar-summary{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:.8rem;margin-top:1rem}.calendar-summary article{border:1px solid rgba(70,77,119,.08);border-radius:1.25rem;background:#fff;padding:1rem;box-shadow:0 12px 35px rgba(70,77,119,.045)}.calendar-summary small,.calendar-summary b,.calendar-summary span{display:block}.calendar-summary small{font-size:.52rem;color:rgba(70,77,119,.45)}.calendar-summary b{margin-top:.55rem;font-size:1.1rem}.calendar-summary span{margin-top:.25rem;font-size:.48rem;color:rgba(70,77,119,.4)}.calendar-summary .receivable{color:#287673}.calendar-summary .payable,.calendar-summary .overdue{color:#a52a40}.financial-calendar-layout{display:grid;grid-template-columns:minmax(0,1fr) 18rem;gap:1rem;margin-top:1rem}.calendar-panel,.calendar-detail-panel{overflow:hidden;border:1px solid rgba(70,77,119,.08);border-radius:1.5rem;background:#fff;box-shadow:0 16px 45px rgba(70,77,119,.05)}.calendar-toolbar{display:flex;align-items:center;justify-content:space-between;gap:1rem;border-bottom:1px solid rgba(70,77,119,.08);padding:1rem}.calendar-toolbar>div{display:flex;gap:.4rem}.calendar-toolbar a{display:grid;min-width:2.25rem;height:2.25rem;place-items:center;border-radius:.75rem;background:#f8f6f6;padding:0 .65rem;font-size:.6rem;font-weight:900}.calendar-toolbar h2{font-size:.9rem;font-weight:900}.calendar-weekdays{display:grid;grid-template-columns:repeat(7,minmax(0,1fr));background:#f8f6f6}.calendar-weekdays span{padding:.65rem;text-align:center;font-size:.48rem;font-weight:900;color:rgba(70,77,119,.48)}.calendar-days{display:grid;grid-template-columns:repeat(7,minmax(0,1fr))}.calendar-day{min-height:6.5rem;border-bottom:1px solid rgba(70,77,119,.07);border-left:1px solid rgba(70,77,119,.07);padding:.5rem;transition:.2s}.calendar-day:hover{background:#f8f6f6}.calendar-day.outside{opacity:.38}.calendar-day.selected{background:#eef8f7;box-shadow:inset 0 0 0 2px rgba(54,130,127,.2)}.calendar-day>b{display:grid;width:1.55rem;height:1.55rem;place-items:center;border-radius:50%;font-size:.55rem}.calendar-day>b.today{background:#36827F;color:#fff}.calendar-day>span{display:grid;gap:.25rem;margin-top:.35rem}.calendar-day em{overflow:hidden;border-right:3px solid;border-radius:.35rem;background:#fff;padding:.25rem .35rem;text-overflow:ellipsis;font-size:.43rem;font-style:normal;white-space:nowrap;box-shadow:0 3px 10px rgba(70,77,119,.05)}.calendar-day i{font-size:.42rem;font-style:normal;color:#287673}.calendar-mobile-list{display:none}.calendar-detail-panel{align-self:start}.calendar-detail-panel>header{border-bottom:1px solid rgba(70,77,119,.08);padding:1rem}.calendar-detail-panel>header small{color:#287673;font-size:.5rem;font-weight:900}.calendar-detail-panel>header h2{margin-top:.25rem;font-size:.75rem;font-weight:900}.calendar-detail-panel>div>article{display:flex;gap:.65rem;border-bottom:1px solid rgba(70,77,119,.08);padding:1rem}.calendar-detail-panel article>i{width:.65rem;height:.65rem;flex:none;border-radius:50%;margin-top:.25rem}.calendar-detail-panel article div{min-width:0}.calendar-detail-panel article b,.calendar-detail-panel article small,.calendar-detail-panel article strong{display:block}.calendar-detail-panel article b{font-size:.65rem}.calendar-detail-panel article small{margin-top:.3rem;font-size:.48rem;color:rgba(70,77,119,.45)}.calendar-detail-panel article strong{margin-top:.45rem;font-size:.62rem}.calendar-detail-panel .receivable{color:#287673}.calendar-detail-panel .payable{color:#a52a40}.calendar-detail-panel article p{margin-top:.45rem;font-size:.52rem;line-height:1.8;color:rgba(70,77,119,.55)}.calendar-detail-panel nav{display:flex;flex-wrap:wrap;gap:.35rem;margin-top:.65rem}.calendar-detail-panel nav a,.calendar-detail-panel nav button{border-radius:999px;background:#f8f6f6;padding:.4rem .6rem;font-size:.46rem;font-weight:900}.calendar-detail-panel nav .danger{background:#fff0f2;color:#a52a40}.calendar-empty{padding:2rem;text-align:center}.calendar-empty p{font-size:.58rem;color:rgba(70,77,119,.45)}.calendar-empty a{display:inline-block;margin-top:.65rem;color:#287673;font-size:.55rem;font-weight:900}
.mobile-app-header,.mobile-bottom-nav,.mobile-dashboard-menu{display:none}
@media(max-width:1000px){.billing-form-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.customer-record-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.financial-calendar-layout{grid-template-columns:1fr}.calendar-detail-panel{position:static}.customer-linked-activity>div{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:760px){body.mobile-menu-is-open{overflow:hidden}.mobile-app-header{display:flex;min-height:3.8rem;align-items:center;justify-content:space-between;gap:1rem;margin-bottom:.65rem;border:1px solid rgba(70,77,119,.08);border-radius:1.2rem;background:#fff;padding:.45rem .65rem;box-shadow:0 12px 35px rgba(70,77,119,.06)}.mobile-app-header>a{display:flex;align-items:center;gap:.55rem}.mobile-app-header img{width:2.7rem;height:2.7rem;object-fit:contain}.mobile-app-header b,.mobile-app-header small{display:block}.mobile-app-header b{font-size:.7rem}.mobile-app-header small{margin-top:.1rem;font-size:.44rem;color:rgba(70,77,119,.45)}.mobile-app-header>button{display:grid;width:2.4rem;height:2.4rem;place-items:center;border-radius:.8rem;background:#f8f6f6}.mobile-app-header svg{width:1.15rem;fill:none;stroke:currentColor;stroke-linecap:round;stroke-width:1.8}.dashboard-utility-bar{min-height:0;border-radius:1.1rem;padding:.45rem}.dashboard-live-badge{display:none}.dashboard-iran-datetime{min-height:2.1rem}.dashboard-utility-actions{max-width:100%;padding:0}.dashboard-tool-button{width:2.1rem;height:2.1rem}.dashboard-welcome-card{margin-top:.75rem;border-radius:1.5rem}.dashboard-financial-reminders{align-items:stretch;flex-direction:column;gap:.6rem}.dashboard-financial-reminders ul{width:100%}.dashboard-reminders-calendar{text-align:center}.customer-hub-intro,.customer-dossier-head{align-items:stretch;flex-direction:column;border-radius:1.4rem;padding:1.15rem}.customer-dossier-head>div:last-child{justify-content:flex-start}.customer-record-grid,.customer-dossier-grid,.customer-linked-activity>div{grid-template-columns:1fr}.billing-form-grid{grid-template-columns:1fr}.billing-form-card,.billing-card.padded{padding:1rem}.billing-row-form{padding:.75rem}.billing-form-actions{position:sticky;z-index:20;bottom:5.2rem;border:1px solid rgba(70,77,119,.09);border-radius:1rem;background:rgba(255,255,255,.94);padding:.65rem;box-shadow:0 14px 35px rgba(70,77,119,.12);backdrop-filter:blur(12px)}.billing-form-actions .billing-btn{min-height:2.5rem}.billing-stats,.calendar-summary{grid-template-columns:repeat(2,minmax(0,1fr))}.calendar-desktop-grid{display:none}.calendar-mobile-list{display:block}.calendar-mobile-list>a{display:flex;align-items:flex-start;gap:.65rem;border-bottom:1px solid rgba(70,77,119,.08);padding:.8rem}.calendar-mobile-list>a>i{display:grid;width:2.5rem;height:2.5rem;flex:none;place-items:center;border-radius:.75rem;color:#fff;font-size:.65rem;font-style:normal;font-weight:900}.calendar-mobile-list>a>span{min-width:0;flex:1}.calendar-mobile-list b,.calendar-mobile-list small,.calendar-mobile-list strong{display:block}.calendar-mobile-list b{font-size:.62rem}.calendar-mobile-list small{margin-top:.25rem;font-size:.47rem;color:rgba(70,77,119,.45)}.calendar-mobile-list strong{margin-top:.3rem;font-size:.55rem}.calendar-mobile-list>a>em{border-radius:999px;background:#fff0f2;padding:.3rem .5rem;color:#a52a40;font-size:.42rem;font-style:normal;font-weight:900}.calendar-mobile-list>p{padding:2rem;text-align:center;font-size:.58rem;color:rgba(70,77,119,.45)}.mobile-bottom-nav{position:fixed;z-index:90;right:.65rem;bottom:max(.45rem,env(safe-area-inset-bottom));left:.65rem;display:grid;grid-template-columns:repeat(5,minmax(0,1fr));min-height:4.1rem;align-items:end;border:1px solid rgba(255,255,255,.85);border-radius:1.2rem;background:rgba(255,255,255,.93);padding:.25rem;box-shadow:0 18px 55px rgba(53,59,97,.24);backdrop-filter:blur(22px)}.mobile-dock-item{display:flex;min-width:0;min-height:3.25rem;flex-direction:column;align-items:center;justify-content:flex-end;gap:.22rem;border-radius:.75rem;padding:.35rem .15rem;color:rgba(70,77,119,.46);font-size:.48rem;font-weight:900}.mobile-dock-item>svg{width:1.15rem;height:1.15rem;fill:none;stroke:currentColor;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.7}.mobile-dock-item.active{background:#eef8f7;color:#287673}.mobile-dock-primary{color:#287673}.mobile-dock-primary>i{display:grid;width:2.55rem;height:2.55rem;place-items:center;margin-top:-1rem;border-radius:.85rem;background:#353b61;color:#fff;box-shadow:0 13px 28px rgba(53,59,97,.25)}.mobile-dock-primary i svg{width:1.2rem;height:1.2rem;fill:none;stroke:currentColor;stroke-linecap:round;stroke-width:1.9}.mobile-dashboard-menu{z-index:110;width:100%;height:100%;max-width:none;max-height:none;border:0;background:rgba(20,28,50,.45);padding:0}.mobile-dashboard-menu[open]{display:grid;place-items:end center}.mobile-dashboard-menu::backdrop{background:rgba(20,28,50,.45);backdrop-filter:blur(5px)}.mobile-dashboard-menu>section{width:100%;max-height:88vh;overflow:auto;border-radius:1.8rem 1.8rem 0 0;background:#fff;padding:1rem 1rem max(1.25rem,env(safe-area-inset-bottom));box-shadow:0 -20px 60px rgba(20,28,50,.2)}.mobile-dashboard-menu header{display:flex;align-items:center;justify-content:space-between;gap:1rem;border-bottom:1px solid rgba(70,77,119,.08);padding-bottom:.8rem}.mobile-dashboard-menu header>div{display:flex;align-items:center;gap:.6rem}.mobile-dashboard-menu header img{width:2.8rem;height:2.8rem;object-fit:contain}.mobile-dashboard-menu header b,.mobile-dashboard-menu header small{display:block}.mobile-dashboard-menu header b{font-size:.72rem}.mobile-dashboard-menu header small{font-size:.48rem;color:rgba(70,77,119,.45)}.mobile-dashboard-menu header button{display:grid;width:2.35rem;height:2.35rem;place-items:center;border-radius:.8rem;background:#f8f6f6;font-size:1.25rem}.mobile-dashboard-menu nav{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.45rem;margin-top:.8rem}.mobile-dashboard-menu nav a{border-radius:.9rem;background:#f8f6f6;padding:.75rem;font-size:.58rem;font-weight:900}.mobile-dashboard-menu>section>form{margin-top:.75rem}.mobile-dashboard-menu>section>form button{width:100%;border-radius:.9rem;background:#fff0f2;padding:.75rem;color:#a52a40;font-size:.58rem;font-weight:900}}
