:root {
  --ink: #142d2a;
  --green: #174d43;
  --green2: #236b5c;
  --mint: #dff4ea;
  --cream: #f7f7f2;
  --line: #e5e9e4;
  --muted: #71807d;
  --white: #fff;
  --orange: #c66a34;
  --shadow: 0 12px 35px rgba(19, 50, 44, 0.08);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
.hidden {
  display: none !important;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font: 800 22px Manrope;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  font-size: 17px;
}
.brand-light {
  color: white;
}
.brand-light .brand-mark {
  background: #fff;
  color: var(--green);
}
.brand-mark.brand-logo,
.brand-light .brand-mark.brand-logo {
  overflow: hidden;
  background: #fff;
}
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.login-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: white;
}
.login-visual {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 44px 8%;
  color: #fff;
  background: linear-gradient(140deg, #0d3b34, #1f6758);
}
.login-visual:after {
  content: "";
  position: absolute;
  width: 570px;
  height: 570px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  right: -230px;
  bottom: -250px;
  box-shadow:
    0 0 0 80px rgba(255, 255, 255, 0.025),
    0 0 0 160px rgba(255, 255, 255, 0.02);
}
.visual-copy {
  margin: auto 0;
  max-width: 620px;
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-block;
  color: var(--green2);
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 18px;
}
.eyebrow.light {
  color: #a9d9cb;
}
.visual-copy h1 {
  font: 700 clamp(44px, 5vw, 70px)/1.08 Manrope;
  margin: 0 0 24px;
  letter-spacing: -3px;
}
.visual-copy h1 em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: #b6dfd3;
}
.visual-copy > p {
  font-size: 18px;
  line-height: 1.65;
  max-width: 530px;
  color: #d0e3de;
}
.floating-card {
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 20px;
  width: min(440px, 100%);
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
}
.float-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #b9e4d7;
  color: var(--green);
  font-weight: 700;
}
.floating-card div {
  display: flex;
  flex-direction: column;
}
.floating-card small {
  color: #c4d9d4;
  margin-top: 3px;
}
.float-time {
  margin-left: auto;
  color: #b7d0ca;
  font-size: 12px;
}
.security-note {
  margin-top: 32px;
  color: #aacac2;
  font-size: 12px;
}
.login-panel {
  display: grid;
  place-items: center;
  padding: 40px;
}
.login-box {
  width: min(420px, 100%);
}
.login-box h2 {
  font: 700 34px Manrope;
  margin: 0 0 10px;
  letter-spacing: -1px;
}
.muted {
  color: var(--muted);
  margin: 0 0 36px;
}
.login-box label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin: 20px 0 8px;
}
.login-box input[type="email"],
.login-box input[type="password"] {
  width: 100%;
  border: 1px solid #d9dfdc;
  padding: 14px 15px;
  border-radius: 9px;
  outline: none;
  color: var(--ink);
}
.login-box input:focus {
  border-color: var(--green2);
  box-shadow: 0 0 0 3px rgba(35, 107, 92, 0.09);
}
.label-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.label-row a,
.forgot-password-link,
.signup a {
  color: var(--green2);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.auth-password-field {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
}
.auth-password-field > label {
  grid-column: 1;
  grid-row: 1;
}
.auth-password-field > .password-wrap {
  grid-column: 1 / -1;
  grid-row: 2;
}
.auth-password-field > .forgot-password-link {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  margin-bottom: 8px;
}
.password-wrap {
  position: relative;
}
.password-wrap input {
  padding-right: 48px !important;
}
.password-wrap button {
  position: absolute;
  right: 10px;
  top: 8px;
  border: 0;
  background: transparent;
  color: #9aa5a2;
  font-size: 20px;
}
.check {
  display: flex !important;
  gap: 9px;
  align-items: center;
  font-weight: 400 !important;
}
.check input {
  accent-color: var(--green);
}
.primary {
  border: 0;
  border-radius: 9px;
  padding: 12px 18px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  transition: 0.2s;
}
.primary:hover {
  background: #0e3d35;
  transform: translateY(-1px);
}
.primary.full {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 15px;
  margin-top: 25px;
}
.signup {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin: 26px;
}
.trust-row {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: center;
  gap: 30px;
  color: #93a09d;
  font-size: 11px;
}
.app {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 250px 1fr;
}
.sidebar {
  height: 100vh;
  position: sticky;
  top: 0;
  background: white;
  border-right: 1px solid var(--line);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
}
.sidebar > .brand {
  padding: 0 11px;
  margin-bottom: 45px;
}
.sidebar > .sidebar-brand {
  height: 150px;
  padding: 0;
  margin-bottom: 14px;
  justify-content: center;
}
.sidebar-brand-full {
  display: block;
  width: 150px;
  height: 150px;
  flex: 0 0 150px;
  object-fit: contain;
}
.sidebar-brand-compact {
  display: none;
}
.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nav-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 0;
  background: transparent;
  padding: 11px 12px;
  border-radius: 8px;
  color: #687672;
  text-align: left;
  font-size: 14px;
}
.nav-item:hover,
.nav-item.active {
  background: #edf5f1;
  color: var(--green);
  font-weight: 700;
}
.nav-item span {
  font-size: 18px;
}
.nav-item > span:first-child {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: grid;
  place-items: center;
  line-height: 1;
  text-align: center;
}
.nav-item .nav-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: grid;
  place-items: center;
}
.nav-item .nav-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav-item b {
  margin-left: auto;
  background: #f7e7dc;
  color: #b05c30;
  padding: 2px 7px;
  border-radius: 10px;
  font-size: 11px;
}
.sidebar-bottom {
  margin-top: auto;
}
.profile {
  border-top: 1px solid var(--line);
  padding: 20px 7px 0;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #d9ede6;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 12px;
}
.profile div {
  display: flex;
  flex-direction: column;
}
.profile strong {
  font-size: 12px;
}
.profile small {
  font-size: 10px;
  color: var(--muted);
  margin-top: 3px;
}
.profile button {
  margin-left: auto;
  border: 0;
  background: transparent;
}
.content {
  padding: 0 4vw 55px;
  min-width: 0;
}
.topbar {
  height: 120px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
}
.topbar h2 {
  font: 700 25px Manrope;
  margin: 0;
}
.topbar p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.top-actions {
  margin-left: auto;
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
}
.icon-button,
.menu-button {
  border: 1px solid var(--line);
  background: white;
  border-radius: 9px;
  padding: 10px 13px;
}
.icon-button {
  width: 42px;
  height: 42px;
  padding: 0;
  display: grid;
  place-items: center;
  color: var(--ink);
  cursor: pointer;
}
.icon-button:hover,
.icon-button[aria-expanded="true"] {
  border-color: #b8c4c0;
  background: #f7f9f8;
}
.icon-button svg,
.global-search-field svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.menu-button {
  display: none;
}
.notify {
  position: relative;
}
.notify:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #d66a38;
  border-radius: 50%;
  right: 8px;
  top: 7px;
}
.notify.read:after {
  display: none;
}
.filters select {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 9px;
  padding: 0 42px 0 16px;
  color: #56645f;
  font: inherit;
  cursor: pointer;
}
.filters select:focus,
.filters input:focus {
  outline: 2px solid rgba(35, 107, 92, 0.16);
  border-color: var(--green2);
}
.top-popover {
  position: absolute;
  z-index: 40;
  right: 0;
  top: 52px;
  width: min(390px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(17, 49, 43, 0.16);
}
.search-popover {
  right: 52px;
}
.search-popover > label {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
}
.global-search-field {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #cfd8d5;
  border-radius: 9px;
  padding: 0 12px;
}
.global-search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 12px 0;
  font: inherit;
}
.global-search-results {
  max-height: 320px;
  overflow: auto;
  margin-top: 10px;
}
.global-search-results > p {
  color: var(--muted);
  font-size: 13px;
  margin: 18px 4px 4px;
}
.search-result {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 10px 8px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
}
.search-result:hover {
  background: #f4f7f6;
}
.search-result div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.search-result small,
.search-result > span {
  color: var(--muted);
  font-size: 12px;
}
.popover-heading {
  display: flex;
  justify-content: space-between;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding-bottom: 13px;
}
.popover-heading small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.popover-heading h3 {
  margin: 3px 0 0;
}
.notification-list button {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 14px 2px;
  display: grid;
  grid-template-columns: 38px 1fr 7px;
  gap: 10px;
  align-items: center;
  text-align: left;
  cursor: pointer;
}
.notification-list {
  max-height: min(480px, calc(100vh - 180px));
  overflow-y: auto;
}
.notification-list button:hover {
  background: #f8faf9;
}
.notification-list button div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.notification-list button small {
  color: var(--muted);
  line-height: 1.35;
}
.notification-list button time {
  color: #9aa5a2;
  font-size: 10px;
}
.notification-list button > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d66a38;
}
.notification-list button.is-read > i {
  background: transparent;
}
.notification-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  font-weight: 700;
}
.notification-icon.warning {
  color: #9a4d26;
  background: #fff0e8;
}
.notification-icon.success {
  color: #176553;
  background: #eaf7f2;
}
.notification-icon.info {
  color: #2b6280;
  background: #e9f4fa;
}
.notification-icon.catalog {
  color: #755b9c;
  background: #f1ebf8;
}
.notification-icon.accountant {
  color: #765f00;
  background: #fff5ca;
}
.page {
  display: none;
}
.page.active {
  display: block;
}
.status-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #cfe8dd;
  background: #eff9f4;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 22px;
}
.trial-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  padding: 12px 16px;
  border: 1px solid #e6c756;
  border-radius: 12px;
  background: #fff7cf;
  color: #3f350d;
}
.trial-banner > span {
  padding: 4px 7px;
  border-radius: 7px;
  background: #f4c430;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.trial-banner small {
  margin-left: auto;
  color: #75651d;
}
.status-icon {
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  background: #cdece0;
  border-radius: 50%;
  color: var(--green);
  font-weight: 800;
}
.status-banner strong {
  font-size: 14px;
}
.status-banner p {
  margin: 3px 0 0;
  color: #657873;
  font-size: 12px;
}
.status-banner button {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--green);
  font-weight: 700;
}
.status-banner-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}
.status-banner-actions button {
  margin-left: 0;
}
#dismissDashboardReadyBanner {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}
.stat-card,
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 20px;
}
.stat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #677570;
  font-size: 12px;
}
.stat-head i {
  font-style: normal;
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 8px;
  font-weight: 800;
}
.mint {
  background: #dff4ea;
  color: #26725f;
}
.blue {
  background: #e2eef7;
  color: #477390;
}
.orange {
  background: #fae8dc;
  color: #bd6536;
}
.purple {
  background: #eee8f7;
  color: #705a8f;
}
.stat-card > strong {
  display: block;
  font: 700 25px Manrope;
  margin: 11px 0 7px;
}
.stat-card small {
  color: #8a9693;
}
.stat-card small.positive {
  color: #258261;
  font-weight: 700;
}
.stat-card small.positive span {
  color: #8a9693;
  font-weight: 400;
}
.stat-card small.warning {
  color: #bd6536;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.8fr);
  gap: 18px;
}
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.panel-head h3 {
  font: 700 16px Manrope;
  margin: 0;
}
.panel-head p {
  color: #8b9794;
  margin: 5px 0 0;
  font-size: 11px;
}
.text-button {
  border: 0;
  background: transparent;
  color: var(--green2);
  font-weight: 700;
  font-size: 12px;
}
.table-wrap {
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th {
  text-align: left;
  color: #9aa4a1;
  font-size: 9px;
  letter-spacing: 0.8px;
  padding: 12px 8px;
  border-bottom: 1px solid var(--line);
}
td {
  padding: 15px 8px;
  border-bottom: 1px solid #edf0ed;
  font-size: 12px;
  white-space: nowrap;
}
tr:last-child td {
  border-bottom: 0;
}
.merchant {
  display: flex;
  gap: 10px;
  align-items: center;
}
.merchant-icon {
  width: 31px;
  height: 31px;
  border-radius: 8px;
  background: #edf3f0;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.merchant div {
  display: flex;
  flex-direction: column;
}
.merchant small {
  color: #99a3a0;
  font-size: 10px;
  margin-top: 2px;
}
.amount {
  font-weight: 700;
  text-align: right;
}
.amount.in {
  color: #278263;
}
.badge {
  padding: 5px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
}
.badge.ok {
  background: #e4f4ed;
  color: #28745f;
}
.badge.wait {
  background: #faeade;
  color: #b55c31;
}
.badge.info {
  background: #eaf2fb;
  color: #285f86;
}
.badge.danger {
  background: #fbe9e6;
  color: #a33b26;
}
.doc-icon {
  color: var(--green);
  background: #e7f4ef;
  padding: 8px;
  border-radius: 8px;
}
.drop-zone {
  border: 1.5px dashed #bfcac6;
  border-radius: 11px;
  padding: 28px 14px;
  text-align: center;
  transition: 0.2s;
}
.drop-zone.dragging {
  background: #eaf6f1;
  border-color: var(--green2);
}
.upload-icon {
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e0f1eb;
  color: var(--green);
  font-size: 20px;
}
.drop-zone strong {
  font-size: 12px;
}
.drop-zone p {
  margin: 5px 0;
}
.drop-zone button {
  border: 0;
  background: transparent;
  color: var(--green2);
  font-weight: 700;
  font-size: 12px;
}
.drop-zone small {
  color: #9aa4a1;
  font-size: 9px;
}
.factur-note {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  background: #f4f8f6;
  padding: 12px;
  border-radius: 9px;
}
.factur-note span {
  color: #278263;
}
.factur-note p {
  margin: 0;
  color: #74817e;
  font-size: 10px;
  line-height: 1.5;
}
.factur-note strong {
  color: var(--ink);
}
.upload-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  padding: 9px 2px;
  border-bottom: 1px solid var(--line);
}
.upload-item span:last-child {
  margin-left: auto;
  color: #2a8066;
}
.page-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.page-heading h1 {
  font: 700 27px Manrope;
  margin: 0;
}
.page-heading p {
  color: var(--muted);
  font-size: 13px;
}
.page:not(#dashboardPage) .page-heading > div:first-child {
  display: none;
}
.page:not(#dashboardPage) .page-heading {
  justify-content: flex-end;
}
.page:not(#dashboardPage) .page-heading:has(> div:only-child) {
  display: none;
}
.filters {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.filters input {
  flex: 1;
  min-width: 170px;
}
.filters input,
.filters button {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: #65736f;
}
.empty-state {
  text-align: center;
  padding: 70px 20px;
}
.large-doc {
  display: grid;
  place-items: center;
  width: 65px;
  height: 65px;
  border-radius: 18px;
  background: #e5f2ed;
  margin: auto;
  font-size: 30px;
}
.empty-state h3 {
  font: 700 19px Manrope;
  margin: 20px 0 7px;
}
.empty-state p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 22px;
}
.bank-hero {
  display: grid;
  grid-template-columns: auto 1.5fr 1fr;
  gap: 25px;
  align-items: center;
  padding: 36px;
}
.bank-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #ddf1e9;
  font-size: 28px;
}
.bank-hero h2 {
  font: 700 24px Manrope;
  margin: 0 0 10px;
}
.bank-hero p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 13px;
  margin-bottom: 22px;
}
.read-only {
  background: #f4f7f5;
  border-radius: 11px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
}
.read-only strong {
  margin-bottom: 4px;
}
.read-only span {
  color: #5e706b;
}
.connected-bank {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}
.bank-logo {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: #765d8d;
  color: #fff;
  border-radius: 9px;
  font-weight: 800;
}
.connected-bank div {
  display: flex;
  flex-direction: column;
}
.connected-bank small {
  color: var(--muted);
  margin-top: 4px;
}
.connected-bank .connected {
  margin-left: auto;
  color: #288063;
  font-size: 12px;
}
.connected-bank > strong {
  margin-left: 20px;
}
.modal {
  position: fixed;
  inset: 0;
  background: rgba(13, 34, 31, 0.55);
  z-index: 10;
  display: grid;
  place-items: center;
  padding: 20px;
}
.modal-card {
  position: relative;
  width: min(440px, 100%);
  background: white;
  padding: 34px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  text-align: center;
}
.modal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  border: 0;
  background: transparent;
  font-size: 24px;
  color: #71807d;
}
.modal-card h2 {
  font: 700 22px Manrope;
  margin: 18px 0 8px;
}
.modal-card > p,
.modal-card > small {
  color: var(--muted);
  font-size: 12px;
}
.bank-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 22px 0;
}
.bank-list button {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 9px;
  padding: 12px;
  text-align: left;
  font-weight: 600;
}
.bank-list button:hover {
  border-color: var(--green2);
  background: #f5faf8;
}
.bank-list b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: #edf3f0;
  border-radius: 8px;
  font-size: 10px;
}
.bank-list span {
  margin-left: auto;
}
.toast {
  position: fixed;
  z-index: 20;
  right: 25px;
  bottom: 25px;
  background: var(--ink);
  color: white;
  border-radius: 10px;
  padding: 13px 18px;
  font-size: 13px;
  opacity: 0;
  transform: translateY(15px);
  transition: 0.25s;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: none;
}
@media (max-width: 1000px) {
  .login-layout {
    grid-template-columns: 1fr;
  }
  .login-visual {
    display: none;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .app {
    grid-template-columns: 80px 1fr;
  }
  .sidebar {
    padding: 28px 12px;
  }
  .sidebar .brand > span:last-child,
  .nav-item:not(.active) {
    font-size: 0;
  }
  .nav-item span {
    font-size: 18px;
  }
  .nav-item.active {
    font-size: 0;
  }
  .sidebar > .sidebar-brand {
    width: 44px;
    height: 44px;
    margin: 0 auto 38px;
  }
  .sidebar-brand-full {
    display: none;
  }
  .sidebar-brand-compact {
    display: block;
    width: 38px;
    height: 38px;
    object-fit: contain;
  }
  .profile div,
  .profile button {
    display: none;
  }
  .sidebar > .brand {
    padding: 0;
    margin-left: 10px;
  }
  .sidebar > .sidebar-brand {
    margin: 0 auto 38px;
  }
  .nav-item {
    justify-content: center;
  }
  .nav-item b {
    position: absolute;
    margin: 0 0 25px 25px;
  }
  .bank-hero {
    grid-template-columns: auto 1fr;
  }
  .read-only {
    grid-column: 1/-1;
  }
}
@media (max-width: 650px) {
  .app {
    display: block;
  }
  .sidebar {
    display: none;
    position: fixed;
    z-index: 8;
    width: 240px;
  }
  .sidebar.open {
    display: flex;
  }
  .sidebar .brand > span:last-child,
  .nav-item:not(.active),
  .nav-item.active {
    font-size: 14px;
  }
  .nav-item {
    justify-content: flex-start;
  }
  .content {
    padding: 0 18px 35px;
  }
  .topbar {
    height: 100px;
  }
  .topbar .primary,
  .icon-button {
    display: none;
  }
  .menu-button {
    display: block;
    margin-right: 12px;
  }
  .topbar h2 {
    font-size: 20px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-card {
    padding: 14px;
  }
  .stat-card > strong {
    font-size: 19px;
  }
  .status-banner button {
    display: none;
  }
  .page-heading {
    align-items: flex-start;
    gap: 15px;
  }
  .page-heading > .primary {
    font-size: 0;
    padding: 12px;
  }
  .page-heading > .primary:first-letter {
    font-size: 16px;
  }
  .filters {
    flex-wrap: wrap;
  }
  .filters input {
    width: 100%;
    flex-basis: 100%;
  }
  .bank-hero {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .login-panel {
    padding: 28px 22px;
  }
  .trust-row {
    gap: 12px;
  }
}

/* Identité Zino-Compta : noir premium et jaune doré */
:root {
  --ink: #171815;
  --green: #171815;
  --green2: #9a7000;
  --mint: #fff0ad;
  --cream: #f7f5ed;
  --line: #e8e3d5;
  --muted: #77756d;
  --yellow: #f4c430;
  --shadow: 0 12px 35px rgba(23, 24, 21, 0.09);
}
.login-visual {
  background: linear-gradient(145deg, #11120f 0%, #24251f 62%, #3c3518 100%);
}
.visual-copy h1 em {
  color: #f4c430;
}
.eyebrow.light,
.security-note {
  color: #e7c95c;
}
.brand-mark,
.primary {
  background: #f4c430;
  color: #171815;
}
.brand-light .brand-mark {
  background: #f4c430;
  color: #171815;
}
.brand-mark.brand-logo,
.brand-light .brand-mark.brand-logo {
  background: #fff;
}
.primary:hover {
  background: #ddb01e;
  color: #111;
}
.floating-card {
  border-color: rgba(244, 196, 48, 0.22);
  background: rgba(244, 196, 48, 0.09);
}
.float-icon {
  background: #f4c430;
  color: #171815;
}
.floating-card small,
.float-time {
  color: #d6d2bf;
}
.nav-item:hover,
.nav-item.active {
  background: #fff3c3;
  color: #171815;
}
.nav-item b {
  background: #f4c430;
  color: #171815;
}
.avatar {
  background: #ffed9b;
  color: #171815;
}
.status-banner {
  border-color: #ead477;
  background: #fff8d8;
}
.status-icon {
  background: #f4c430;
  color: #171815;
}
.status-banner button,
.text-button,
.drop-zone button,
.label-row a,
.signup a,
.eyebrow {
  color: #8a6500;
}
.stat-head .mint,
.doc-icon,
.upload-icon,
.large-doc,
.bank-icon {
  background: #fff0ad;
  color: #171815;
}
.drop-zone.dragging {
  background: #fff8d9;
  border-color: #c99709;
}
.factur-note,
.read-only {
  background: #faf7ea;
}
.login-box input:focus {
  border-color: #d3a717;
  box-shadow: 0 0 0 3px rgba(244, 196, 48, 0.2);
}
.check input {
  accent-color: #171815;
}
.bank-list button:hover {
  border-color: #d3a717;
  background: #fffaf0;
}

/* Panneau de justification d'une transaction */
tbody tr {
  transition: background 0.18s;
}
tbody tr[data-transaction-index] {
  cursor: pointer;
}
tbody tr[data-transaction-index]:hover {
  background: #fffbeb;
}
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 18, 15, 0.38);
  z-index: 30;
  backdrop-filter: blur(2px);
}
.transaction-drawer {
  position: fixed;
  z-index: 31;
  right: 0;
  top: 0;
  height: 100vh;
  width: min(480px, 100%);
  background: #fff;
  box-shadow: -18px 0 45px rgba(23, 24, 21, 0.16);
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.28s ease;
  visibility: hidden;
}
.transaction-drawer.open {
  transform: translateX(0);
  visibility: visible;
}
.drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 30px 22px;
  border-bottom: 1px solid var(--line);
}
.drawer-header .eyebrow {
  margin-bottom: 8px;
}
.drawer-header h2 {
  font: 700 22px Manrope;
  margin: 0;
}
.drawer-close {
  border: 1px solid var(--line);
  background: #fff;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  font-size: 23px;
  color: #77756d;
}
.drawer-body {
  padding: 25px 30px;
  overflow-y: auto;
  flex: 1;
}
.drawer-transaction {
  padding: 20px;
  border: 1px solid var(--line);
  background: #faf9f4;
  border-radius: 13px;
}
.drawer-merchant {
  display: flex;
  gap: 11px;
  align-items: center;
}
.drawer-merchant div {
  display: flex;
  flex-direction: column;
}
.drawer-merchant small {
  color: var(--muted);
  font-size: 11px;
  margin-top: 3px;
}
.drawer-amount {
  display: block;
  font: 700 26px Manrope;
  margin: 22px 0;
}
.drawer-transaction dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.drawer-transaction dl div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.drawer-transaction dt {
  color: var(--muted);
  font-size: 10px;
}
.drawer-transaction dd {
  font-size: 11px;
  font-weight: 600;
  margin: 0;
}
.drawer-section {
  margin-top: 28px;
}
.drawer-section h3 {
  font: 700 15px Manrope;
  margin: 0 0 6px;
}
.drawer-section > p {
  color: var(--muted);
  font-size: 12px;
  margin: 0 0 14px;
}
.candidate-rule {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0 0 14px;
  padding: 11px 12px;
  border: 1px solid #ead28a;
  border-radius: 10px;
  background: #fff9df;
  color: #62501d;
  font-size: 12px;
  line-height: 1.45;
}
.candidate-rule > span {
  display: grid;
  flex: 0 0 20px;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
}
.candidate-rule p {
  margin: 1px 0 0;
}
.drawer-drop-zone {
  padding: 28px 15px;
  border: 1.5px dashed #c9c5b8;
  border-radius: 11px;
  text-align: center;
}
.drawer-drop-zone.dragging {
  background: #fff8d9;
  border-color: #c99709;
}
.drawer-drop-zone > strong {
  font-size: 12px;
}
.drawer-drop-zone p {
  margin: 5px;
}
.drawer-drop-zone button {
  border: 0;
  background: transparent;
  color: #8a6500;
  font-weight: 700;
  font-size: 12px;
}
.drawer-drop-zone > small {
  font-size: 9px;
  color: #99978f;
}
.selected-file {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid #ead477;
  background: #fff9dc;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 11px;
}
.selected-file-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: #f4c430;
  border-radius: 8px;
}
.selected-file div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.selected-file strong {
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.selected-file small {
  color: var(--muted);
  font-size: 9px;
  margin-top: 3px;
}
.selected-file button {
  margin-left: auto;
  border: 0;
  background: transparent;
  font-size: 18px;
}
.drawer-info {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  background: #f4f4ef;
  border-radius: 9px;
  padding: 12px;
}
.drawer-info > span {
  display: grid;
  place-items: center;
  flex: 0 0 22px;
  height: 22px;
  border-radius: 50%;
  background: #171815;
  color: #fff;
  font: 700 11px Georgia;
}
.drawer-info p {
  margin: 2px 0;
  color: #6e6d66;
  font-size: 10px;
  line-height: 1.5;
}
.drawer-footer {
  padding: 18px 30px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.secondary {
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 11px 18px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
}
.primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}
@media (max-width: 520px) {
  .drawer-header,
  .drawer-body {
    padding-left: 20px;
    padding-right: 20px;
  }
  .drawer-footer {
    padding: 15px 20px;
  }
  .drawer-footer button {
    flex: 1;
  }
  .drawer-transaction dl {
    grid-template-columns: 1fr 1fr;
  }
  .drawer-transaction dl div:last-child {
    grid-column: 1/-1;
  }
}
.match-analysis {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 14px;
}
.analysis-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 12px;
}
.analysis-heading span {
  padding: 4px 8px;
  border-radius: 12px;
  background: #f1efe7;
  font-weight: 800;
}
.analysis-heading span.good {
  background: #e4f4ed;
  color: #28745f;
}
.analysis-heading span.low {
  background: #faeade;
  color: #b55c31;
}
.analysis-check {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 0;
  border-top: 1px solid #efede5;
}
.analysis-check > span {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #efede5;
  font-size: 10px;
}
.analysis-check.ok > span {
  background: #dff1e8;
  color: #28745f;
}
.analysis-check.fail > span {
  background: #fae4d8;
  color: #b55c31;
}
.analysis-check div {
  display: flex;
  flex-direction: column;
}
.analysis-check strong {
  font-size: 10px;
}
.analysis-check small {
  font-size: 9px;
  color: var(--muted);
  margin-top: 2px;
}
.selected-files {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}
.selected-files:empty {
  display: none;
}
.selected-file {
  margin-top: 0;
}
.selected-file.error {
  border-color: #e9b39a;
  background: #fff1e9;
}
.selected-file button[data-remove-file] {
  margin-left: auto;
  border: 0;
  background: transparent;
  font-size: 18px;
}
.drawer-drop-zone.compact {
  padding: 15px;
}
.drawer-drop-zone.compact .upload-icon {
  display: none;
}
.invoice-candidates {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.candidate-empty {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}
.invoice-candidate {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}
.invoice-candidate:hover,
.invoice-candidate.selected {
  border-color: #d1a310;
  background: #fffaf0;
}
.invoice-candidate input {
  accent-color: #171815;
}
.invoice-candidate div {
  display: flex;
  flex-direction: column;
}
.invoice-candidate strong {
  font-size: 11px;
}
.invoice-candidate small {
  font-size: 9px;
  color: var(--muted);
  margin-top: 3px;
}
.invoice-candidate > span {
  font-size: 11px;
  font-weight: 700;
}
.invoice-candidate.exact > span {
  color: #28745f;
}
.candidate-total {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  padding: 11px 13px;
  background: #fff5c9;
  border-radius: 9px;
  font-size: 11px;
}
.drawer-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #aaa79d;
  font-size: 8px;
  margin: 18px 0;
}
.drawer-divider:before,
.drawer-divider:after {
  content: "";
  height: 1px;
  background: var(--line);
  flex: 1;
}
.receipt-toggle {
  width: 100%;
  border: 1px solid var(--line);
  background: #faf9f4;
  border-radius: 9px;
  padding: 11px;
  color: var(--ink);
  font-weight: 700;
  font-size: 11px;
  margin-bottom: 10px;
}
.entity-list {
  display: flex;
  flex-direction: column;
}
.document-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-right: 54px;
  margin-bottom: 20px;
}
.document-detail-modal-card {
  width: min(760px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 30px;
}
.document-detail-modal-card > .modal-close {
  top: 20px;
  right: 20px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  line-height: 1;
  transition:
    color 0.18s,
    background 0.18s;
}
.document-detail-modal-card > .modal-close:hover {
  color: var(--ink);
  background: #f5f2e9;
}
.document-detail-head h2 {
  margin: 8px 0 0;
}
.form-modal .document-detail-head h2 {
  margin-top: 14px;
}
.detail-customer {
  padding: 13px;
  background: #f7f5ed;
  border-radius: 9px;
  font-size: 11px;
  margin-bottom: 16px;
}
.detail-lines {
  border: 1px solid var(--line);
  border-radius: 9px;
  overflow: hidden;
}
.detail-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 15px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}
.detail-line:last-child {
  border: 0;
}
.detail-line small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}
.detail-totals {
  margin: 18px 0 22px auto;
  width: min(260px, 100%);
}
.detail-totals div {
  display: flex;
  justify-content: space-between;
  padding: 7px;
  font-size: 11px;
}
.detail-totals .grand-total {
  background: #fff0ad;
  border-radius: 8px;
  padding: 11px;
}
.detail-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.entity-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 8px;
  border-bottom: 1px solid var(--line);
}
.entity-row:last-child {
  border: 0;
}
.entity-row div {
  display: flex;
  flex-direction: column;
}
.entity-row strong {
  font-size: 12px;
}
.entity-row small {
  font-size: 9px;
  color: var(--muted);
  margin-top: 3px;
}
.entity-row > span {
  font-size: 11px;
}
.customer-row {
  grid-template-columns:
    minmax(220px, 1.2fr) minmax(150px, 180px) minmax(200px, 1fr)
    minmax(250px, auto);
  justify-content: start;
  gap: 24px;
}
.product-row {
  grid-template-columns: minmax(240px, 1.5fr) 150px 130px 90px auto;
}
.catalog-import-help {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 11px;
}
.catalog-import-help code {
  padding: 5px 8px;
  border-radius: 7px;
  background: #f4f2ea;
  color: #25251f;
}
.help-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 22px;
}
.help-search {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgb(20 20 16 / 4%);
}
.help-search span {
  font-size: 22px;
}
.help-search input {
  width: 100%;
  min-height: 56px;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 15px;
}
.help-questions {
  display: grid;
  gap: 10px;
}
.help-question {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
.help-question summary {
  position: relative;
  padding: 18px 52px 18px 20px;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}
.help-question summary::-webkit-details-marker {
  display: none;
}
.help-question summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: #9b7600;
  font-size: 22px;
}
.help-question[open] summary::after {
  content: "−";
}
.help-question[open] summary {
  background: #fffaf0;
}
.help-question p {
  margin: 0;
  padding: 0 20px 19px;
  color: var(--muted);
  line-height: 1.65;
}
.help-no-result {
  padding: 34px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  background: #fff;
  text-align: center;
}
.help-no-result p {
  margin: 7px 0 0;
  color: var(--muted);
}
.help-contact {
  position: sticky;
  top: 96px;
  padding: 26px;
}
.help-contact-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--yellow);
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 800;
}
.help-contact h2 {
  margin: 8px 0;
}
.help-contact > p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.55;
}
.help-contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: inherit;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.help-contact-link:hover {
  border-color: #d4aa17;
  background: #fffaf0;
}
.help-contact-link > span {
  font-size: 20px;
}
.help-contact-link div,
.help-contact-link small,
.help-contact-link strong {
  display: block;
}
.help-contact-link small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 9px;
}
.help-contact-link strong {
  overflow-wrap: anywhere;
  font-size: 12px;
}
.customer-heading-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
#customersPage .page-heading {
  flex-wrap: wrap;
}
#customersPage .customer-heading-actions {
  width: 100%;
}
#customersPage .archived-customer-filter {
  margin-right: auto;
}
.archived-customer-filter {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}
.archived-customer-filter input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.customer-filter-switch {
  position: relative;
  flex: 0 0 42px;
  width: 42px;
  height: 24px;
  border: 1px solid #d7d2c6;
  border-radius: 999px;
  background: #e7e4dc;
  transition: background 160ms ease, border-color 160ms ease;
}
.customer-filter-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgb(0 0 0 / 18%);
  transition: transform 160ms ease;
}
.archived-customer-filter input:checked + .customer-filter-switch {
  border-color: var(--yellow);
  background: var(--yellow);
}
.archived-customer-filter input:checked + .customer-filter-switch::after {
  transform: translateX(18px);
  background: #fff;
}
.archived-customer-filter input:focus-visible + .customer-filter-switch {
  outline: 3px solid rgb(249 193 28 / 25%);
  outline-offset: 2px;
}
.customer-row-actions {
  display: flex;
  flex-direction: column;
  justify-self: end;
  align-items: flex-end;
  gap: 9px;
  min-width: 100px;
  margin-right: 18px;
}
.customer-row-actions .text-button {
  width: 100%;
  padding-right: 0;
  text-align: right;
}
.customer-status-group + .customer-status-group {
  margin-top: 22px;
}
.customer-panel-grouped {
  padding: 0;
  border: 0;
  background: transparent;
}
.customer-panel-grouped .customer-status-group {
  overflow: hidden;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.customer-panel-grouped .customer-status-group > header {
  padding: 0 0 16px;
}
.customer-panel-grouped .customer-pagination {
  padding: 18px 4px 0;
}
.customer-status-group > header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px 14px;
}
.customer-status-group > header h2 {
  margin: 0;
  font-size: 15px;
}
.customer-status-group > header span {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  place-items: center;
  border-radius: 999px;
  background: #fff0ad;
  font-size: 11px;
  font-weight: 700;
}
.customer-status-group-archived > header span {
  background: #ece9e1;
  color: #625f57;
}
.customer-row-archived {
  background: #faf9f5;
  opacity: 0.78;
}
.customer-archived-badge {
  padding: 5px 9px;
  border-radius: 999px;
  background: #ece9e1;
  color: #625f57;
  font-size: 11px;
  font-weight: 700;
}
.customer-archive-action {
  color: #9a552f;
}
.customer-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(320px, 30vw);
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.customer-search input {
  width: 100%;
  min-height: 42px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
}
.customer-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  padding-top: 18px;
}
.customer-pagination span {
  color: var(--muted);
  font-size: 12px;
}
.customer-pagination button:disabled {
  cursor: default;
  opacity: 0.45;
}
@media (max-width: 760px) {
  .customer-heading-actions {
    width: 100%;
    flex-wrap: wrap;
  }
  .customer-search {
    width: 100%;
  }
  .archived-customer-filter {
    width: 100%;
  }
  .customer-row {
    grid-template-columns: 1fr;
  }
  .customer-row-actions {
    justify-self: start;
    align-items: flex-start;
    margin-right: 0;
  }
  .customer-row-actions .text-button {
    text-align: left;
  }
  .product-row {
    grid-template-columns: 1fr;
  }
}
.document-tabs {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.document-tab-group {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8f8f5;
}
.document-tab-group > span {
  padding: 0 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.document-tab-group.received {
  background: #f1f7f4;
}
.document-tabs button {
  border: 0;
  background: #fff;
  padding: 8px 13px;
  border-radius: 8px;
  font-size: 11px;
}
.document-tabs button.active {
  background: #171815;
  color: #fff;
}
.received-type {
  background: #e7f4ef;
  color: #176553;
}
.document-no-action {
  color: var(--muted);
  text-align: right;
}
.document-paid {
  color: #176553;
  font-weight: 700;
  text-align: right;
}
.settings-grid {
  max-width: 850px;
}
.settings-tabs {
  position: relative;
  display: flex;
  gap: 6px;
  margin-bottom: 22px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  width: fit-content;
}
.settings-tab-slider {
  position: absolute;
  z-index: 0;
  top: 5px;
  bottom: 5px;
  left: 5px;
  border-radius: 8px;
  background: #171815;
  pointer-events: none;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    width 260ms cubic-bezier(0.22, 1, 0.36, 1);
}
.settings-tabs button {
  position: relative;
  z-index: 1;
  padding: 10px 16px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
}
.settings-tabs button.active {
  background: transparent;
  color: #fff;
}
.settings-panels {
  max-width: 980px;
}
.settings-panel {
  display: none;
}
.settings-panel.active {
  display: block;
}
.settings-section-heading {
  display: flex;
  justify-content: space-between;
  margin: 28px 0 12px;
}
.settings-section-heading:first-child {
  margin-top: 0;
}
.settings-section-heading h2 {
  margin: 0 0 4px;
}
.settings-section-heading p {
  margin: 0;
  color: var(--muted);
}
.settings-form {
  padding: 25px;
}
.settings-form label {
  display: block;
  margin: 14px 0 6px;
  font-size: 11px;
  font-weight: 700;
}
.settings-form > label:first-child,
.settings-form .form-grid:first-child label {
  margin-top: 0;
}
.settings-form input,
.settings-form textarea,
.settings-form select {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: inherit;
  font: inherit;
}
.settings-form textarea {
  resize: vertical;
}
.settings-form input[readonly] {
  cursor: not-allowed;
  background: #f3f1eb;
  color: #67645c;
}
.field-help {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}
.verification-submission-modal {
  max-width: 600px;
}
.verification-intro {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.55;
}
.verification-submission-modal form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.verification-submission-modal form label {
  margin-top: 10px;
  font-weight: 700;
}
.form-modal input.verification-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}
.form-modal label.verification-file-picker {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  margin-top: 0 !important;
  padding: 12px 14px;
  border: 1px dashed #d8cfae;
  border-radius: 12px;
  background: #fffdf6;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease,
    transform 160ms ease;
}
.verification-file-picker:hover {
  border-color: #e6ad00;
  background: #fff8dc;
  transform: translateY(-1px);
}
.verification-file-input:focus-visible + .verification-file-picker {
  outline: 3px solid rgb(249 193 28 / 25%);
  outline-offset: 2px;
}
.verification-file-picker .verification-file-copy {
  flex: 1;
  min-width: 0;
}
.verification-file-copy strong,
.verification-file-copy small {
  display: block;
}
.verification-file-copy strong {
  margin-bottom: 4px;
  font-size: 13px;
}
.verification-file-copy small {
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}
.verification-file-picker .verification-file-action {
  flex: 0 0 auto;
  padding: 9px 12px;
  border-radius: 8px;
  background: #ffedaa;
  color: #8a6500;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.verification-submission-modal form small {
  color: var(--muted);
}
.verification-privacy-notice {
  margin: 15px 0 8px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #fff8da;
  color: #725a00;
  font-size: 11px;
  line-height: 1.5;
}
@media (max-width: 430px) {
  .form-modal label.verification-file-picker {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .verification-file-picker .verification-file-action {
    margin-left: 0;
  }
}
.settings-form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 22px;
}
.settings-warning {
  margin: 17px 0 0;
  padding: 11px 13px;
  border-radius: 9px;
  background: #fff8da;
  color: #725a00;
  font-size: 11px;
  line-height: 1.5;
}
.settings-input-suffix {
  position: relative;
}
.settings-input-suffix input {
  padding-right: 48px;
}
.settings-input-suffix span {
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 11px;
}
.settings-card-content {
  min-width: 0;
}
.accountant-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  padding: 24px;
}
.accountant-link-card h2 {
  margin: 5px 0;
}
.accountant-link-card p {
  margin: 0;
  color: var(--muted);
}
.danger {
  border: 1px solid #e6b5aa !important;
  background: #fff3ef !important;
  color: #a33b26 !important;
}
.confirmation-modal-card {
  width: min(460px, calc(100vw - 32px));
  padding: 30px;
  text-align: center;
}
.confirmation-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: #fff0ad;
  font-size: 25px;
}
.confirmation-modal-card h2 {
  margin: 0 0 9px;
}
.confirmation-modal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.confirmation-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}
.accountant-sharing-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 26px;
}
.settings-card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #fff0ad;
  font-size: 23px;
}
.accountant-sharing-card h2 {
  margin: 6px 0 8px;
}
.accountant-sharing-card p,
.accountant-sharing-card small {
  color: var(--muted);
}
.accountant-sharing-card label {
  display: block;
  margin: 22px 0 7px;
  font-size: 12px;
  font-weight: 700;
}
.uuid-copy-field {
  display: flex;
  gap: 9px;
  margin-bottom: 8px;
}
.uuid-copy-field code {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #f8f8f5;
  font-size: 14px;
  overflow-wrap: anywhere;
}
.form-modal {
  text-align: left;
}
.plan-choice {
  display: grid;
  gap: 9px;
  margin: 18px 0;
  padding: 0;
  border: 0;
}
.plan-choice legend {
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 800;
}
.plan-option {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  margin: 0 !important;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.plan-option.featured {
  background: #fff9df;
}
.plan-option input {
  width: auto !important;
  margin-top: 3px;
}
.plan-option span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.plan-option small {
  color: var(--muted);
  line-height: 1.35;
}
.subscription-card,
.accountant-sharing-card {
  display: flex;
  gap: 18px;
}
.subscription-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.subscription-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 15px;
  background: #fff;
  text-align: left;
  cursor: pointer;
}
.subscription-option.active {
  border-color: #e0b51f;
  background: #fff9df;
}
.subscription-option span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}
.subscription-option small {
  margin-top: 5px;
  color: #8d6c00;
  font-weight: 800;
}
.nav-item.plan-locked {
  opacity: 0.58;
}
.nav-item.plan-locked::after {
  content: "Pilotage";
  margin-left: auto;
  padding: 2px 5px;
  border-radius: 8px;
  background: #fff0ad;
  color: #6f5600;
  font-size: 8px;
  font-weight: 800;
}
.invoicing-plan .dashboard-grid {
  grid-template-columns: 1fr;
}
.subscription-pending [data-banking-feature] {
  visibility: hidden;
}
.form-modal h2 {
  margin-top: 0;
}
.form-modal label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  margin: 13px 0 6px;
}
.form-modal input,
.form-modal textarea,
.form-modal select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: #fff;
}
.customer-lookup-panel {
  text-align: left;
}
.customer-lookup-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px;
  align-items: end;
}
.customer-lookup-row button {
  min-height: 42px;
}
.customer-lookup-panel > small {
  display: block;
  margin: 8px 0 12px;
  color: var(--muted);
}
.customer-lookup-panel > .text-button {
  margin: 12px auto 0;
  display: block;
}
.customer-lookup-return {
  display: block;
  margin: 0 0 10px;
  padding: 0;
}
.company-search-results {
  display: flex;
  flex-direction: column;
  gap: 7px;
  max-height: 260px;
  overflow-y: auto;
}
.company-search-result {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
  text-align: left;
}
.company-search-result:hover {
  border-color: #d5ad21;
  background: #fffaf0;
}
.company-search-result small {
  color: var(--muted);
}
.company-search-result span {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  color: #8a6500;
  font-weight: 700;
}
.document-form-modal {
  width: 100%;
}
.document-editor-page {
  width: 100%;
}
.document-editor-heading {
  padding-top: 4px;
}
.document-editor-panel {
  width: 100%;
  max-width: none;
  padding: 26px;
}
.document-editor-panel #documentSubmitButton {
  max-width: 360px;
  margin-left: auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-grid.three {
  grid-template-columns: repeat(3, 1fr);
}
.document-lines-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 22px 0 10px;
}
.document-lines-heading h3 {
  margin: 0 0 3px;
}
.document-lines-heading small {
  color: var(--muted);
}
.document-line-editors {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.add-document-line-row {
  display: flex;
  justify-content: flex-start;
  margin: 12px 0 4px;
}
.document-line-editor {
  position: relative;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfbf8;
}
.document-line-editor > label {
  padding-right: 35px;
}
.catalog-product-select {
  margin-bottom: 12px;
  border-color: #d6b229 !important;
  background: #fffaf0 !important;
}
.catalog-autocomplete {
  position: relative;
}
.catalog-autocomplete > input {
  width: 100%;
}
.catalog-suggestions {
  position: absolute;
  z-index: 30;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  max-height: 310px;
  overflow-y: auto;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 45px rgb(17 19 16 / 16%);
}
.catalog-suggestions button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 11px 12px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  text-align: left;
}
.catalog-suggestions button:hover,
.catalog-suggestions button:focus-visible {
  background: #f7f5ee;
}
.catalog-suggestions button span,
.catalog-suggestions button small {
  display: block;
}
.catalog-suggestions button small {
  margin-top: 3px;
  color: var(--muted);
  font-weight: 400;
}
.catalog-suggestions button b {
  flex: 0 0 auto;
}
.catalog-no-result {
  margin: 0;
  padding: 12px;
  color: var(--muted);
}
.margin-tax-editor {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}
.margin-tax-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.form-modal label.margin-tax-toggle {
  display: inline-flex;
  align-items: center;
  margin: 14px 0 4px;
}
.margin-tax-toggle input {
  appearance: none;
  position: relative;
  width: 38px;
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d8d7d1;
  cursor: pointer;
  transition: background 0.2s ease;
}
.form-modal .margin-tax-toggle input {
  flex: 0 0 38px;
  width: 38px;
  height: 22px;
  margin: 0;
  padding: 0;
}
.margin-tax-toggle input::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px #0003;
  transition: transform 0.2s ease;
}
.margin-tax-toggle input:checked {
  background: var(--yellow);
}
.margin-tax-toggle input:checked::after {
  transform: translateX(16px);
}
.margin-tax-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  margin-top: 12px;
}
.margin-tax-fields small {
  grid-column: 1 / -1;
  align-self: start;
  color: var(--muted);
  line-height: 1.45;
}
.product-margin-tax-fields {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
}
.product-margin-tax-fields > div {
  min-width: 0;
}
.product-margin-tax-fields small {
  grid-column: 1 / -1;
  line-height: 1.45;
}
.internal-margin-information {
  color: #9a6500 !important;
  font-weight: 700;
}
.remove-document-line {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #8a9692;
  font-size: 20px;
  cursor: pointer;
}
.remove-document-line:hover {
  background: #f5e7e1;
  color: #a84f2d;
}
.document-type {
  padding: 4px 8px;
  border-radius: 10px;
  background: #fff0ad;
  font-size: 9px;
  font-weight: 700;
}
.document-row {
  grid-template-columns: minmax(220px, 1fr) 120px 190px 150px 135px;
}
.document-row .document-type {
  width: 100%;
}
.document-row > :last-child {
  justify-self: end;
}
.document-status {
  justify-self: start;
  padding: 5px 9px;
  border-radius: 999px;
  background: #f0f1ee;
  color: #5f6b68;
  font-size: 10px;
  font-weight: 750;
}
.document-status.status-draft {
  background: #fff0e5;
  color: #a34c25;
}
.document-status.status-validated {
  background: #eaf2fb;
  color: #285f86;
}
.document-status.status-submitted,
.document-status.status-transmitted,
.document-status.status-delivered,
.document-status.status-accepted,
.document-status.status-paid {
  background: #e7f5ef;
  color: #176553;
}
.document-status.status-rejected,
.document-status.status-error,
.document-status.status-cancelled {
  background: #fbe9e6;
  color: #a33b26;
}

/* Lisibilité de l’interface */
.profile strong {
  font-size: 13px;
}
.profile small,
.notification-list button small {
  font-size: 12px;
}
.notification-list button time {
  font-size: 11px;
}
.trial-banner > span {
  font-size: 11px;
}
.status-banner p,
.stat-head {
  font-size: 13px;
}
.stat-card small,
.panel-head p {
  font-size: 13px;
}
.text-button {
  font-size: 13px;
}
th {
  font-size: 11px;
}
td {
  font-size: 14px;
}
.merchant small {
  font-size: 12px;
}
.badge {
  font-size: 12px;
}
.drop-zone strong,
.drop-zone button,
.drawer-drop-zone > strong,
.drawer-drop-zone button {
  font-size: 13px;
}
.drop-zone small,
.drawer-drop-zone > small {
  font-size: 11px;
}
.factur-note p,
.drawer-info p {
  font-size: 12px;
}
.upload-item,
.candidate-empty,
.invoice-candidate strong,
.invoice-candidate > span,
.candidate-total,
.receipt-toggle {
  font-size: 13px;
}
.invoice-candidate small,
.selected-file small {
  font-size: 11px;
}
.detail-customer,
.detail-line,
.detail-totals div {
  font-size: 13px;
}
.detail-line small {
  font-size: 12px;
}
.entity-row strong {
  font-size: 14px;
}
.entity-row small {
  font-size: 12px;
}
.entity-row > span {
  font-size: 13px;
}
.catalog-import-help,
.customer-pagination span {
  font-size: 13px;
}
.document-tab-group > span {
  font-size: 11px;
}
.document-tabs button {
  font-size: 13px;
}
.document-type,
.document-status {
  padding: 6px 10px;
  font-size: 12px;
}
.form-modal label,
.settings-form label {
  font-size: 13px;
}
.settings-warning {
  font-size: 13px;
}
.settings-input-suffix span {
  font-size: 12px;
}
.help-contact-link small {
  font-size: 11px;
}
.help-contact-link strong {
  font-size: 13px;
}
@media (max-width: 600px) {
  .entity-row {
    grid-template-columns: 1fr auto;
  }
  .document-row {
    grid-template-columns: 1fr auto;
  }
  .entity-row > span:not(.document-type) {
    display: none;
  }
  .form-grid,
  .form-grid.three {
    grid-template-columns: 1fr;
  }
}
.login-box input:not([type="checkbox"]) {
  width: 100%;
  border: 1px solid #d9dfdc;
  padding: 14px 15px;
  border-radius: 9px;
  outline: none;
  color: var(--ink);
}
.auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.reset-link-box {
  margin-top: 18px;
  padding: 13px;
  background: #fff5c9;
  border-radius: 9px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 11px;
}
.reset-link-box a {
  color: #8a6500;
  font-weight: 700;
}
.auth-grid label {
  margin-top: 0;
}
.login-box label small {
  color: var(--muted);
  font-weight: 400;
}
@media (max-width: 520px) {
  .auth-grid {
    grid-template-columns: 1fr;
  }
}
.platform-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
  gap: 18px;
}
.platform-config {
  padding: 28px;
}
.platform-config h2 {
  font: 700 22px Manrope;
  margin: 0 0 8px;
}
.platform-config > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.provider-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
}
.provider-option {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 11px;
  padding: 15px;
  text-align: left;
}
.provider-option:hover,
.provider-option.selected {
  border-color: #d1a310;
  background: #fffaf0;
}
.provider-option-logo {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: #f4c430;
  color: #171815;
  border-radius: 10px;
  font-weight: 800;
}
.provider-option div {
  display: flex;
  flex-direction: column;
}
.provider-option strong {
  font-size: 15px;
}
.provider-option small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}
.provider-option > span:last-child {
  margin-left: auto;
}
.provider-loading {
  color: var(--muted);
  font-size: 14px;
  padding: 20px;
  text-align: center;
}
.platform-actions {
  display: flex;
  gap: 10px;
}
.platform-layout aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.platform-status {
  display: flex;
  gap: 13px;
  align-items: center;
}
.platform-status-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #efede6;
}
.platform-status-icon.connected {
  background: #dff1e8;
  color: #28745f;
}
.platform-status div {
  display: flex;
  flex-direction: column;
}
.platform-status small {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 1px;
}
.platform-status strong {
  font-size: 15px;
  margin: 4px 0;
}
.platform-status div span {
  font-size: 12px;
  color: var(--muted);
}
.capabilities h3 {
  font: 700 16px Manrope;
  margin: 0 0 14px;
}
.capabilities ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.capabilities li {
  font-size: 13px;
  color: #5f6865;
}
.capabilities li:before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  background: #fff0ad;
  border-radius: 50%;
  color: #171815;
  font-weight: 800;
}
.platform-independence {
  display: flex;
  gap: 11px;
  padding: 15px;
  background: #171815;
  color: #fff;
  border-radius: 12px;
}
.platform-independence > span {
  color: #f4c430;
  font-size: 20px;
}
.platform-independence p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #d5d4cc;
}
.platform-independence strong {
  color: #fff;
}
.provider-badge {
  padding: 3px 7px;
  background: #fff0ad;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
}
@media (max-width: 850px) {
  .settings-tabs {
    width: 100%;
    overflow-x: auto;
  }
  .settings-tabs button {
    flex: 0 0 auto;
  }
  .accountant-link-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .help-layout {
    grid-template-columns: 1fr;
  }
  .help-contact {
    position: static;
  }
  .platform-layout {
    grid-template-columns: 1fr;
  }
}
