:root {
  --ndos-navy: #071a2f;
  --ndos-deep: #04111f;
  --ndos-blue: #0b2d4d;
  --ndos-gold: #c9a227;
  --ndos-gold-light: #e6c75d;
  --ndos-bg: #f3f6fb;
  --ndos-white: #ffffff;
  --ndos-muted: #7f8a99;
  --ndos-border: #e7ecf3;
}

body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--ndos-bg);
}

.ndos-login-body {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 80% 0%,
      rgba(201, 162, 39, 0.35),
      transparent 32%
    ),
    linear-gradient(160deg, #04111f 0%, #071a2f 45%, #0b2d4d 100%);
}

.mobile-login-app {
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #071a2f 0%, #0b2d4d 52%, #f3f6fb 52%);
}

.login-hero {
  min-height: 46vh;
  padding: 34px 22px 24px;
  color: #fff;
  position: relative;
}

.hero-glow {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.24);
  filter: blur(12px);
  top: -80px;
  right: -90px;
}

.brand-area {
  position: relative;
  z-index: 2;
  padding-top: 16px;
}

.brand-logo-card {
  width: 104px;
  height: 104px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(201, 162, 39, 0.35);
}

.brand-logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.brand-text {
  margin-top: 22px;
}

.brand-badge {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.18);
  color: var(--ndos-gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  border: 1px solid rgba(201, 162, 39, 0.32);
}

.brand-text h1 {
  margin: 12px 0 2px;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.hero-metrics {
  position: relative;
  z-index: 2;
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hero-metrics div {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 12px 8px;
  backdrop-filter: blur(8px);
}

.hero-metrics strong {
  display: block;
  font-size: 18px;
  color: var(--ndos-gold-light);
}

.hero-metrics span {
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.25;
}

.login-panel {
  position: relative;
  z-index: 3;
  margin-top: -26px;
  min-height: 56vh;
  background: #fff;
  border-radius: 34px 34px 0 0;
  padding: 18px 22px 26px;
  box-shadow: 0 -18px 42px rgba(0, 0, 0, 0.16);
}

.panel-handle {
  width: 48px;
  height: 5px;
  border-radius: 999px;
  background: #dbe2ec;
  margin: 0 auto 20px;
}

.login-panel h2 {
  color: var(--ndos-navy);
  font-weight: 850;
  margin-bottom: 5px;
}

.panel-subtitle {
  color: var(--ndos-muted);
  font-size: 13px;
  margin-bottom: 18px;
}

.ndos-field label {
  font-size: 12px;
  font-weight: 800;
  color: #314158;
  margin-bottom: 7px;
}

.input-icon-wrap {
  position: relative;
}

.input-icon-wrap .form-control {
  height: 54px;
  border-radius: 18px;
  border: 1px solid var(--ndos-border);
  background: #f8fafd;
  padding-left: 46px;
  font-size: 14px;
}

.input-icon-wrap .form-control:focus {
  border-color: var(--ndos-gold);
  box-shadow: 0 0 0 0.18rem rgba(201, 162, 39, 0.16);
}

.input-icon {
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ndos-gold);
  font-size: 14px;
  z-index: 2;
}

.ndos-login-btn {
  height: 54px;
  border-radius: 18px;
  border: none;
  background: linear-gradient(135deg, var(--ndos-navy), var(--ndos-blue));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(7, 26, 47, 0.24);
}

.ndos-login-btn:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--ndos-blue), var(--ndos-navy));
}

.security-note {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  color: var(--ndos-muted);
  font-size: 12px;
  line-height: 1.35;
}

.login-version {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid var(--ndos-border);
  display: flex;
  justify-content: space-between;
  color: var(--ndos-muted);
  font-size: 12px;
}

@media (min-width: 768px) {
  .ndos-login-body {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-login-app {
    min-height: 760px;
    border-radius: 42px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  }
}

/* APP SHELL */
.ndos-app-body {
  background: #eef3f8;
  min-height: 100vh;
}

.ndos-app-shell {
  max-width: 520px;
  min-height: 100vh;
  margin: 0 auto;
  background: #f6f8fb;
  position: relative;
  box-shadow: 0 0 40px rgba(7, 26, 47, 0.08);
}

.app-topbar {
  height: 78px;
  background: linear-gradient(135deg, #071a2f, #0b2d4d);
  color: #fff;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0 0 26px 26px;
  position: sticky;
  top: 0;
  z-index: 20;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-logo {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.topbar-logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.topbar-title {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.topbar-subtitle {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.72);
}

.topbar-user {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: rgba(201, 162, 39, 0.18);
  border: 1px solid rgba(201, 162, 39, 0.36);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e6c75d;
  text-decoration: none;
  font-weight: 900;
}

.app-content {
  padding: 18px 16px 96px;
}

/* BOTTOM NAV */
.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: calc(100% - 28px);
  max-width: 492px;
  height: 72px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #e7ecf3;
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(7, 26, 47, 0.18);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  z-index: 30;
  backdrop-filter: blur(14px);
}

.bottom-nav-item {
  text-decoration: none;
  color: #8793a3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
}

.bottom-nav-icon {
  width: 28px;
  height: 28px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.bottom-nav-item.active {
  color: #071a2f;
}

.bottom-nav-item.active .bottom-nav-icon {
  background: linear-gradient(135deg, #071a2f, #0b2d4d);
  color: #e6c75d;
}

.dashboard-hero {
  background:
    radial-gradient(
      circle at top right,
      rgba(230, 199, 93, 0.32),
      transparent 36%
    ),
    linear-gradient(135deg, #071a2f, #0b2d4d);
  color: #fff;
  border-radius: 28px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 18px 40px rgba(7, 26, 47, 0.18);
}

.hero-label {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.18);
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: #e6c75d;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.dashboard-hero h1 {
  margin: 12px 0 4px;
  font-size: 22px;
  font-weight: 850;
}

.dashboard-hero p {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.hero-logo {
  width: 74px;
  height: 74px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.kpi-card {
  background: #fff;
  border-radius: 24px;
  padding: 17px;
  border: 1px solid #e7ecf3;
  box-shadow: 0 10px 28px rgba(7, 26, 47, 0.06);
}

.kpi-card span {
  font-size: 12px;
  color: #7f8a99;
  font-weight: 700;
}

.kpi-card strong {
  display: block;
  font-size: 30px;
  color: #071a2f;
  line-height: 1.1;
  margin-top: 5px;
}

.kpi-card small {
  color: #8b96a6;
  font-size: 11px;
}

.kpi-card.gold strong {
  color: #c9a227;
}

.kpi-card.danger strong {
  color: #dc3545;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 22px 2px 12px;
}

.section-title h2 {
  font-size: 17px;
  font-weight: 850;
  margin: 0;
  color: #071a2f;
}

.section-title p {
  font-size: 12px;
  color: #7f8a99;
  margin: 2px 0 0;
}

.section-title a {
  font-size: 12px;
  text-decoration: none;
  color: #c9a227;
  font-weight: 800;
}

.finance-card {
  background: #fff;
  border-radius: 26px;
  padding: 18px;
  border: 1px solid #e7ecf3;
  display: grid;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(7, 26, 47, 0.06);
}

.finance-card span {
  display: block;
  font-size: 12px;
  color: #7f8a99;
  font-weight: 700;
}

.finance-card strong {
  display: block;
  font-size: 21px;
  color: #071a2f;
  margin-top: 3px;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
}

.module-card {
  min-height: 92px;
  text-decoration: none;
  border-radius: 24px;
  padding: 16px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1),
    rgba(248, 250, 253, 1)
  );
  border: 1px solid #e7ecf3;
  color: #071a2f;
  box-shadow: 0 10px 26px rgba(7, 26, 47, 0.05);
}

.module-card span {
  display: block;
  font-size: 11px;
  color: #8b96a6;
  font-weight: 800;
}

.module-card strong {
  display: block;
  margin-top: 8px;
  font-size: 17px;
}

.empty-card {
  background: #fff;
  border-radius: 22px;
  padding: 16px;
  color: #7f8a99;
  font-size: 13px;
  border: 1px solid #e7ecf3;
}

.empty-card.success {
  color: #198754;
}

.job-item,
.alert-item {
  background: #fff;
  border-radius: 22px;
  padding: 15px;
  border: 1px solid #e7ecf3;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 8px 22px rgba(7, 26, 47, 0.045);
}

.job-item strong,
.alert-item strong {
  display: block;
  color: #071a2f;
  font-size: 14px;
}

.job-item span {
  display: block;
  color: #394b61;
  font-size: 13px;
  margin-top: 2px;
}

.job-item small,
.alert-item small {
  display: block;
  color: #8b96a6;
  font-size: 11px;
  margin-top: 3px;
}

.status-pill,
.severity {
  align-self: flex-start;
  font-style: normal;
  font-size: 10px;
  font-weight: 900;
  padding: 6px 9px;
  border-radius: 999px;
  background: #eef3f8;
  color: #071a2f;
  text-transform: uppercase;
  white-space: nowrap;
}

.severity.warning {
  background: rgba(201, 162, 39, 0.14);
  color: #a9810c;
}

.severity.high,
.severity.critical {
  background: rgba(220, 53, 69, 0.12);
  color: #dc3545;
}

.severity.info {
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
}

.profile-hero {
  background:
    radial-gradient(
      circle at top right,
      rgba(230, 199, 93, 0.28),
      transparent 38%
    ),
    linear-gradient(135deg, #071a2f, #0b2d4d);
  border-radius: 30px;
  padding: 30px 20px;
  text-align: center;
  color: #fff;
  box-shadow: 0 18px 40px rgba(7, 26, 47, 0.18);
}

.profile-avatar {
  width: 96px;
  height: 96px;
  margin: 0 auto 15px;
  border-radius: 32px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #071a2f;
  font-size: 38px;
  font-weight: 900;
  border: 2px solid rgba(201, 162, 39, 0.65);
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  object-fit: cover;
}

.profile-hero h1 {
  font-size: 22px;
  font-weight: 850;
  margin: 0;
}

.profile-hero p {
  margin: 4px 0 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.profile-role {
  display: inline-flex;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.18);
  border: 1px solid rgba(201, 162, 39, 0.4);
  color: #e6c75d;
  font-size: 11px;
  font-weight: 900;
}

.profile-card {
  margin-top: 18px;
  background: #fff;
  border-radius: 26px;
  padding: 8px 16px;
  border: 1px solid #e7ecf3;
  box-shadow: 0 10px 28px rgba(7, 26, 47, 0.06);
}

.profile-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid #eef2f6;
}

.profile-row:last-child {
  border-bottom: none;
}

.profile-row span {
  color: #7f8a99;
  font-size: 13px;
  font-weight: 700;
}

.profile-row strong {
  color: #071a2f;
  font-size: 13px;
  text-align: right;
}

.profile-actions {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.profile-btn {
  height: 52px;
  border-radius: 18px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 850;
}

.profile-btn.secondary {
  background: #fff;
  color: #071a2f;
  border: 1px solid #e7ecf3;
}

.profile-btn.danger {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.18);
}
.bottom-nav {
  height: 78px;
  padding: 8px;
  gap: 4px;
}

.bottom-nav-item {
  border-radius: 18px;
  gap: 3px;
  transition: all 0.25s ease;
}

.bottom-nav-icon {
  width: 30px;
  height: 30px;
  font-size: 17px;
}

.bottom-nav-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.05;
}

.bottom-nav-text strong {
  font-size: 10px;
  font-weight: 900;
}

.bottom-nav-text small {
  font-size: 8px;
  color: #9aa5b3;
  font-weight: 700;
}

.bottom-nav-item.active {
  background: linear-gradient(
    135deg,
    rgba(7, 26, 47, 0.08),
    rgba(201, 162, 39, 0.1)
  );
}

.bottom-nav-item.active .bottom-nav-icon {
  background: linear-gradient(135deg, #071a2f, #0b2d4d);
  color: #e6c75d;
  box-shadow: 0 8px 18px rgba(7, 26, 47, 0.22);
}

.executive-hero {
  background:
    radial-gradient(
      circle at top right,
      rgba(230, 199, 93, 0.35),
      transparent 36%
    ),
    linear-gradient(135deg, #071a2f, #0b2d4d);
  border-radius: 30px;
  padding: 22px;
  color: #fff;
  box-shadow: 0 18px 42px rgba(7, 26, 47, 0.22);
}

.executive-hero-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.executive-hero h1 {
  font-size: 22px;
  font-weight: 900;
  margin: 12px 0 4px;
}

.executive-hero p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.hero-finance-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.hero-finance-grid div {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 14px;
}

.hero-finance-grid span {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.hero-finance-grid strong {
  display: block;
  font-size: 20px;
  margin-top: 4px;
  color: #e6c75d;
}

.critical-banner {
  margin-top: 14px;
  background: #fff;
  border-radius: 24px;
  padding: 14px;
  border: 1px solid rgba(220, 53, 69, 0.18);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 28px rgba(220, 53, 69, 0.08);
}

.critical-icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: rgba(220, 53, 69, 0.12);
  color: #dc3545;
  display: flex;
  align-items: center;
  justify-content: center;
}

.critical-banner strong {
  display: block;
  color: #071a2f;
  font-size: 13px;
}

.critical-banner span {
  display: block;
  color: #7f8a99;
  font-size: 11px;
}

.critical-banner a {
  margin-left: auto;
  color: #dc3545;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
}

.executive-kpi-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.exec-kpi-card {
  background: #fff;
  border-radius: 24px;
  padding: 15px;
  border: 1px solid #e7ecf3;
  box-shadow: 0 10px 28px rgba(7, 26, 47, 0.055);
}

.exec-kpi-icon {
  width: 38px;
  height: 38px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.exec-kpi-icon.blue {
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
}
.exec-kpi-icon.gold {
  background: rgba(201, 162, 39, 0.14);
  color: #a9810c;
}
.exec-kpi-icon.navy {
  background: rgba(7, 26, 47, 0.1);
  color: #071a2f;
}
.exec-kpi-icon.green {
  background: rgba(25, 135, 84, 0.1);
  color: #198754;
}
.exec-kpi-icon.purple {
  background: rgba(111, 66, 193, 0.1);
  color: #6f42c1;
}
.exec-kpi-icon.teal {
  background: rgba(32, 201, 151, 0.12);
  color: #0f8f6f;
}
.exec-kpi-icon.red {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}
.exec-kpi-icon.dark {
  background: rgba(33, 37, 41, 0.1);
  color: #212529;
}

.exec-kpi-card span {
  display: block;
  color: #7f8a99;
  font-size: 11px;
  font-weight: 800;
}

.exec-kpi-card strong {
  display: block;
  color: #071a2f;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.1;
  margin-top: 3px;
}

.exec-kpi-card small {
  color: #9aa5b3;
  font-size: 10px;
  font-weight: 700;
}

.chart-card {
  background: #fff;
  border-radius: 26px;
  padding: 16px;
  margin-top: 18px;
  border: 1px solid #e7ecf3;
  box-shadow: 0 10px 28px rgba(7, 26, 47, 0.055);
}

.module-grid-pro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.module-card-pro {
  min-height: 94px;
  background: #fff;
  border-radius: 22px;
  border: 1px solid #e7ecf3;
  text-decoration: none;
  padding: 14px 10px;
  color: #071a2f;
  box-shadow: 0 10px 24px rgba(7, 26, 47, 0.045);
}

.module-card-pro i {
  font-size: 22px;
  color: #c9a227;
}

.module-card-pro span {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  color: #7f8a99;
  font-weight: 800;
}

.module-card-pro strong {
  display: block;
  font-size: 13px;
  font-weight: 900;
}

.job-item-pro,
.alert-item-pro {
  background: #fff;
  border-radius: 24px;
  padding: 14px;
  border: 1px solid #e7ecf3;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 22px rgba(7, 26, 47, 0.045);
}

.job-icon,
.alert-icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: rgba(7, 26, 47, 0.08);
  color: #071a2f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alert-icon.warning {
  background: rgba(201, 162, 39, 0.14);
  color: #a9810c;
}

.alert-icon.high,
.alert-icon.critical {
  background: rgba(220, 53, 69, 0.12);
  color: #dc3545;
}

.alert-icon.info {
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
}

.job-info,
.alert-info {
  flex: 1;
  min-width: 0;
}

.job-info strong,
.alert-info strong {
  display: block;
  font-size: 13px;
  color: #071a2f;
  font-weight: 900;
}

.job-info span {
  display: block;
  color: #394b61;
  font-size: 12px;
  margin-top: 2px;
}

.job-info small,
.alert-info small {
  display: block;
  color: #8b96a6;
  font-size: 10px;
  margin-top: 3px;
}

.status-pill.open,
.status-pill.in_progress {
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
}

.status-pill.completed,
.status-pill.closed {
  background: rgba(25, 135, 84, 0.1);
  color: #198754;
}

.status-pill.on_hold {
  background: rgba(201, 162, 39, 0.14);
  color: #a9810c;
}

.status-pill.cancelled {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}
.development-page {
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.development-card {
  width: 100%;
  background:
    radial-gradient(
      circle at top right,
      rgba(201, 162, 39, 0.16),
      transparent 35%
    ),
    #fff;
  border-radius: 32px;
  padding: 28px 22px;
  text-align: center;
  border: 1px solid #e7ecf3;
  box-shadow: 0 18px 45px rgba(7, 26, 47, 0.09);
}

.development-icon {
  width: 86px;
  height: 86px;
  border-radius: 30px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, #071a2f, #0b2d4d);
  color: #e6c75d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  box-shadow: 0 16px 32px rgba(7, 26, 47, 0.22);
}

.development-badge {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.13);
  color: #a9810c;
  border: 1px solid rgba(201, 162, 39, 0.22);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.development-card h1 {
  margin: 14px 0 8px;
  color: #071a2f;
  font-size: 24px;
  font-weight: 900;
}

.development-card p {
  color: #7f8a99;
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 20px;
}

.development-progress {
  width: 100%;
  height: 9px;
  background: #eef2f6;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 18px;
}

.development-progress-bar {
  width: 42%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #071a2f, #c9a227);
}

.development-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.development-info-grid div {
  background: #f7f9fc;
  border-radius: 18px;
  padding: 12px 8px;
  border: 1px solid #edf1f6;
}

.development-info-grid strong {
  display: block;
  color: #071a2f;
  font-size: 11px;
  font-weight: 900;
}

.development-info-grid span {
  display: block;
  margin-top: 4px;
  color: #8b96a6;
  font-size: 10px;
  font-weight: 700;
}

.development-btn {
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, #071a2f, #0b2d4d);
  color: #fff;
  text-decoration: none;
  font-weight: 850;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.page-hero {
  background:
    radial-gradient(
      circle at top right,
      rgba(230, 199, 93, 0.32),
      transparent 36%
    ),
    linear-gradient(135deg, #071a2f, #0b2d4d);
  color: #fff;
  border-radius: 30px;
  padding: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 18px 42px rgba(7, 26, 47, 0.2);
}

.page-hero h1 {
  margin: 12px 0 4px;
  font-size: 25px;
  font-weight: 900;
}

.page-hero p {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.page-action-btn {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: rgba(201, 162, 39, 0.18);
  color: #e6c75d;
  border: 1px solid rgba(201, 162, 39, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.summary-strip {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.summary-strip div {
  background: #fff;
  border: 1px solid #e7ecf3;
  border-radius: 22px;
  padding: 15px;
  box-shadow: 0 10px 26px rgba(7, 26, 47, 0.055);
}

.summary-strip span {
  display: block;
  color: #7f8a99;
  font-size: 11px;
  font-weight: 800;
}

.summary-strip strong {
  display: block;
  margin-top: 4px;
  color: #071a2f;
  font-size: 25px;
  font-weight: 900;
}

.empty-state-pro {
  background: #fff;
  border-radius: 28px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid #e7ecf3;
  box-shadow: 0 12px 32px rgba(7, 26, 47, 0.06);
}

.empty-icon {
  width: 78px;
  height: 78px;
  border-radius: 28px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #071a2f, #0b2d4d);
  color: #e6c75d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.empty-state-pro h3 {
  color: #071a2f;
  font-size: 20px;
  font-weight: 900;
}

.empty-state-pro p {
  color: #7f8a99;
  font-size: 13px;
  line-height: 1.5;
}

.empty-btn {
  margin-top: 10px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, #071a2f, #0b2d4d);
  color: #fff;
  text-decoration: none;
  font-weight: 850;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
}

.client-card {
  background: #fff;
  border-radius: 24px;
  padding: 14px;
  border: 1px solid #e7ecf3;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 22px rgba(7, 26, 47, 0.045);
}

.client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 17px;
  background: linear-gradient(135deg, #071a2f, #0b2d4d);
  color: #e6c75d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.client-info {
  flex: 1;
  min-width: 0;
}

.client-info strong {
  display: block;
  color: #071a2f;
  font-size: 14px;
  font-weight: 900;
}

.client-info span {
  display: block;
  color: #394b61;
  font-size: 12px;
  margin-top: 2px;
}

.client-info small {
  display: block;
  color: #8b96a6;
  font-size: 10px;
  margin-top: 4px;
}

.client-status {
  font-style: normal;
  font-size: 10px;
  font-weight: 900;
  padding: 6px 9px;
  border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
}

.client-status.active {
  background: rgba(25, 135, 84, 0.1);
  color: #198754;
}

.client-status.prospect {
  background: rgba(201, 162, 39, 0.14);
  color: #a9810c;
}

.client-status.inactive {
  background: rgba(108, 117, 125, 0.12);
  color: #6c757d;
}

.client-status.blacklist {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}
.search-card {
  margin-top: 14px;
  background: #fff;
  border-radius: 24px;
  padding: 12px;
  border: 1px solid #e7ecf3;
  box-shadow: 0 10px 26px rgba(7, 26, 47, 0.05);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-box i {
  color: #c9a227;
  font-size: 18px;
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 13px;
  color: #071a2f;
}

.search-box button {
  border: none;
  border-radius: 14px;
  padding: 9px 13px;
  background: #071a2f;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

/* .summary-strip.three {
  grid-template-columns: repeat(3, 1fr);
} */

.client-card-pro {
  background: #fff;
  border-radius: 24px;
  padding: 14px;
  border: 1px solid #e7ecf3;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 22px rgba(7, 26, 47, 0.045);
}

.client-action-area {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.mini-action {
  width: 34px;
  height: 34px;
  border-radius: 13px;
  border: none;
  background: rgba(7, 26, 47, 0.08);
  color: #071a2f;
}

.ndos-modal {
  border: none;
  border-radius: 30px;
  overflow: hidden;
}

.ndos-modal-header {
  background:
    radial-gradient(
      circle at top right,
      rgba(230, 199, 93, 0.32),
      transparent 36%
    ),
    linear-gradient(135deg, #071a2f, #0b2d4d);
  color: #fff;
  border: none;
  padding: 22px;
}

.ndos-modal-header span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.18);
  border: 1px solid rgba(201, 162, 39, 0.34);
  color: #e6c75d;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.ndos-modal-header h5 {
  margin: 10px 0 0;
  font-weight: 900;
}

.ndos-modal-footer {
  border: none;
  padding: 16px 22px 22px;
}

.form-section-title {
  color: #071a2f;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 12px;
}

.ndos-label {
  font-size: 11px;
  font-weight: 900;
  color: #314158;
  margin-bottom: 6px;
}

.ndos-label span {
  color: #dc3545;
}

.ndos-form-control {
  min-height: 48px;
  border-radius: 16px;
  border: 1px solid #e7ecf3;
  background: #f8fafd;
  font-size: 13px;
}

.ndos-form-control:focus {
  border-color: #c9a227;
  box-shadow: 0 0 0 0.18rem rgba(201, 162, 39, 0.16);
}

@media (max-width: 576px) {
  .modal-fullscreen-sm-down .ndos-modal {
    border-radius: 30px 30px 0 0;
    margin-top: auto;
  }
}
/* FIX BOOTSTRAP MODAL NDOS */
.modal:not(.show) {
  display: none !important;
}

.modal-backdrop {
  z-index: 1040 !important;
}

.modal {
  z-index: 1055 !important;
}

.ndos-modal .modal-body {
  padding: 22px;
  background: #f6f8fb;
  max-height: 68vh;
  overflow-y: auto;
}

.ndos-modal .modal-footer {
  background: #fff;
  position: sticky;
  bottom: 0;
  z-index: 5;
}

.ndos-modal .row {
  margin-left: -6px;
  margin-right: -6px;
}

.ndos-modal .row > [class*="col-"] {
  padding-left: 6px;
  padding-right: 6px;
}

.ndos-label {
  display: block;
  font-size: 12px;
  font-weight: 900;
  color: #314158;
  margin-bottom: 7px;
}

.ndos-form-control {
  width: 100%;
  min-height: 52px;
  border-radius: 17px;
  border: 1px solid #e0e7f0;
  background: #fff;
  font-size: 14px;
  padding: 12px 14px;
}

textarea.ndos-form-control {
  min-height: 92px;
  resize: vertical;
}

@media (max-width: 576px) {
  .modal-dialog.modal-fullscreen-sm-down {
    margin: 0;
    display: flex;
    align-items: flex-end;
    min-height: 100vh;
  }

  .modal-fullscreen-sm-down .modal-content.ndos-modal {
    width: 100%;
    max-height: 92vh;
    min-height: auto;
    border-radius: 30px 30px 0 0;
  }
}
.ndos-confirm-modal {
  border: none;
  border-radius: 30px;
  padding: 28px 22px 22px;
  text-align: center;
  background: #fff;
  box-shadow: 0 24px 70px rgba(7, 26, 47, 0.28);
}

.confirm-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 16px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.confirm-icon.danger {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.ndos-confirm-modal h5 {
  color: #071a2f;
  font-size: 21px;
  font-weight: 900;
  margin-bottom: 8px;
}

.ndos-confirm-modal p {
  color: #7f8a99;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 22px;
}

.confirm-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.confirm-btn {
  height: 50px;
  border-radius: 17px;
  font-size: 13px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.confirm-btn.secondary {
  background: #f3f6fb;
  color: #071a2f;
  border: 1px solid #e7ecf3;
}

.confirm-btn.danger {
  background: #dc3545;
  color: #fff;
  border: 1px solid #dc3545;
}

.confirm-btn.danger:hover {
  background: #bb2d3b;
  color: #fff;
}
.ndos-toast-container {
  position: fixed;
  top: 18px;
  left: 50%;
  width: calc(100% - 32px);
  max-width: 480px;
  transform: translateX(-50%);
  z-index: 99999;
  display: grid;
  gap: 10px;
  pointer-events: none;
}

.ndos-toast {
  pointer-events: auto;
  min-height: 72px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 22px;
  border: 1px solid #e7ecf3;
  box-shadow: 0 18px 46px rgba(7, 26, 47, 0.22);
  padding: 13px 13px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: ndosToastIn 0.35s ease forwards;
  overflow: hidden;
  position: relative;
}

.ndos-toast::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
}

.ndos-toast.success::before {
  background: #198754;
}

.ndos-toast.danger::before {
  background: #dc3545;
}

.ndos-toast.warning::before {
  background: #c9a227;
}

.ndos-toast.info::before {
  background: #0d6efd;
}

.ndos-toast-icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ndos-toast.success .ndos-toast-icon {
  background: rgba(25, 135, 84, 0.1);
  color: #198754;
}

.ndos-toast.danger .ndos-toast-icon {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.ndos-toast.warning .ndos-toast-icon {
  background: rgba(201, 162, 39, 0.14);
  color: #a9810c;
}

.ndos-toast.info .ndos-toast-icon {
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
}

.ndos-toast-content {
  flex: 1;
  min-width: 0;
}

.ndos-toast-content strong {
  display: block;
  font-size: 13px;
  font-weight: 900;
  color: #071a2f;
}

.ndos-toast-content span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: #6f7b8a;
  line-height: 1.35;
}

.ndos-toast-close {
  width: 30px;
  height: 30px;
  border-radius: 11px;
  border: none;
  background: #f1f4f8;
  color: #7f8a99;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ndos-toast.hide {
  animation: ndosToastOut 0.35s ease forwards;
}

@keyframes ndosToastIn {
  from {
    opacity: 0;
    transform: translateY(-18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes ndosToastOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(-18px) scale(0.96);
  }
}
.client-action-area {
  min-width: 72px;
}

.mini-action {
  transition: all 0.2s ease;
}

.mini-action:hover {
  background: #071a2f;
  color: #e6c75d;
}
.search-clear {
  width: 34px;
  height: 34px;
  border-radius: 13px;
  background: rgba(220, 53, 69, 0.08);
  color: #dc3545;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.detail-hero {
  background:
    radial-gradient(
      circle at top right,
      rgba(230, 199, 93, 0.32),
      transparent 36%
    ),
    linear-gradient(135deg, #071a2f, #0b2d4d);
  border-radius: 30px;
  padding: 24px 20px;
  color: #fff;
  text-align: center;
  position: relative;
  box-shadow: 0 18px 42px rgba(7, 26, 47, 0.2);
}

.back-btn {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: #e6c75d;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.detail-avatar {
  width: 82px;
  height: 82px;
  border-radius: 28px;
  margin: 16px auto 14px;
  background: #fff;
  color: #071a2f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 900;
  border: 2px solid rgba(201, 162, 39, 0.65);
}

.detail-hero h1 {
  margin: 0;
  font-size: 23px;
  font-weight: 900;
}

.detail-hero p {
  margin: 6px 0 13px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.summary-strip.two {
  grid-template-columns: repeat(2, 1fr);
}

.detail-card {
  margin-top: 16px;
  background: #fff;
  border-radius: 26px;
  padding: 16px;
  border: 1px solid #e7ecf3;
  box-shadow: 0 10px 28px rgba(7, 26, 47, 0.055);
}

.small-action-btn {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: none;
  background: rgba(7, 26, 47, 0.08);
  color: #071a2f;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid #eef2f6;
}

.detail-row span,
.detail-address span {
  color: #7f8a99;
  font-size: 12px;
  font-weight: 800;
}

.detail-row strong {
  color: #071a2f;
  font-size: 13px;
  text-align: right;
}

.detail-address {
  padding-top: 13px;
}

.detail-address p {
  color: #071a2f;
  font-size: 13px;
  margin: 5px 0 0;
  line-height: 1.55;
}

.contact-item,
.activity-item {
  padding: 14px;
  border-radius: 20px;
  background: #f8fafd;
  border: 1px solid #edf1f6;
  margin-bottom: 10px;
}

.contact-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.contact-item strong,
.activity-item strong {
  display: block;
  color: #071a2f;
  font-size: 13px;
  font-weight: 900;
}

.contact-item span,
.activity-item span {
  display: block;
  color: #394b61;
  font-size: 12px;
  margin-top: 3px;
}

.contact-item small,
.activity-item small {
  display: block;
  color: #8b96a6;
  font-size: 10px;
  margin-top: 4px;
}

.contact-item em {
  font-style: normal;
  align-self: flex-start;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.14);
  color: #a9810c;
  font-size: 10px;
  font-weight: 900;
}
.client-action-area {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  min-width: 95px;
}

.client-actions {
  display: flex;
  gap: 8px;
}

.mini-action {
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.25s ease;
  font-size: 14px;
}

.mini-action.detail {
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
}

.mini-action.detail:hover {
  background: #0d6efd;
  color: #fff;
  transform: translateY(-2px);
}

.mini-action.edit {
  background: rgba(201, 162, 39, 0.14);
  color: #a9810c;
}

.mini-action.edit:hover {
  background: #c9a227;
  color: #fff;
  transform: translateY(-2px);
}

.client-status {
  font-size: 10px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.client-status.active {
  background: #e9f9ef;
  color: #198754;
}

.client-status.prospect {
  background: #fff8e6;
  color: #a9810c;
}

.client-status.inactive {
  background: #eef2f6;
  color: #6c757d;
}

.client-status.blacklist {
  background: #fdecec;
  color: #dc3545;
}
.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  min-width: 74px;
}

.primary-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #e7ecf3;
  border-radius: 18px;
  padding: 13px 14px;
  color: #071a2f;
  font-size: 13px;
  font-weight: 850;
}

.primary-switch input {
  display: none;
}

.primary-switch span {
  width: 42px;
  height: 24px;
  border-radius: 999px;
  background: #d8e0ea;
  position: relative;
  transition: 0.25s ease;
}

.primary-switch span::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 3px;
  top: 3px;
  transition: 0.25s ease;
  box-shadow: 0 2px 8px rgba(7, 26, 47, 0.18);
}

.primary-switch input:checked + span {
  background: #c9a227;
}

.primary-switch input:checked + span::before {
  transform: translateX(18px);
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 12px;
  padding: 0 0 16px;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #c9a227;
  margin-top: 4px;
  box-shadow: 0 0 0 5px rgba(201, 162, 39, 0.14);
  flex-shrink: 0;
}

.timeline-content {
  flex: 1;
  background: #f8fafd;
  border: 1px solid #edf1f6;
  border-radius: 20px;
  padding: 13px 14px;
}

.timeline-content strong {
  display: block;
  color: #071a2f;
  font-size: 13px;
  font-weight: 900;
}

.timeline-content span {
  display: block;
  color: #8b96a6;
  font-size: 10px;
  margin-top: 4px;
}

.timeline-content p {
  color: #394b61;
  font-size: 12px;
  line-height: 1.5;
  margin: 8px 0 0;
}
/* FINAL FIX - ROLE BASED BOTTOM NAV */
.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: calc(100% - 28px);
  max-width: 492px;
  min-height: 76px;
  height: auto;
  padding: 8px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #e7ecf3;
  border-radius: 26px;
  box-shadow: 0 18px 44px rgba(7, 26, 47, 0.18);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 6px;
  z-index: 999;
  backdrop-filter: blur(14px);
}

.bottom-nav-item {
  flex: 1 1 0;
  min-width: 0;
  height: 60px;
  border-radius: 18px;
  text-decoration: none;
  color: #8793a3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 10px;
  font-weight: 800;
  overflow: hidden;
}

.bottom-nav-icon {
  width: 28px;
  height: 28px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.bottom-nav-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.05;
  overflow: hidden;
}

.bottom-nav-text strong {
  max-width: 100%;
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bottom-nav-text small {
  max-width: 100%;
  font-size: 8px;
  color: #9aa5b3;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bottom-nav-item.active {
  color: #071a2f;
  background: linear-gradient(
    135deg,
    rgba(7, 26, 47, 0.08),
    rgba(201, 162, 39, 0.1)
  );
}

.bottom-nav-item.active .bottom-nav-icon {
  background: linear-gradient(135deg, #071a2f, #0b2d4d);
  color: #e6c75d;
  box-shadow: 0 8px 18px rgba(7, 26, 47, 0.22);
}

.app-content {
  padding-bottom: 120px;
}

@media (max-width: 390px) {
  .bottom-nav {
    width: calc(100% - 18px);
    bottom: 10px;
    gap: 4px;
    padding: 7px;
  }

  .bottom-nav-item {
    height: 58px;
  }

  .bottom-nav-text strong {
    font-size: 9px;
  }

  .bottom-nav-text small {
    display: none;
  }
}
/* FIX SUMMARY STRIP RESPONSIVE */
.summary-strip {
  width: 100%;
  display: grid;
  gap: 12px;
}

.summary-strip.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.summary-strip.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.summary-strip div {
  min-width: 0;
  overflow: hidden;
}

.summary-strip span,
.summary-strip strong {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.summary-strip strong {
  white-space: nowrap;
  font-size: clamp(16px, 5vw, 25px);
}

@media (max-width: 390px) {
  .summary-strip.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .summary-strip.three div:last-child {
    grid-column: span 2;
  }
}
@media (max-width: 430px) {
  .summary-strip.three {
    grid-template-columns: 1fr;
  }

  .summary-strip.three div:last-child {
    grid-column: auto;
  }
}
.job-card-pro {
  background: #fff;
  border-radius: 24px;
  padding: 14px;
  border: 1px solid #e7ecf3;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 22px rgba(7, 26, 47, 0.045);
}

.job-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 17px;
  background: linear-gradient(135deg, #071a2f, #0b2d4d);
  color: #e6c75d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.job-card-info {
  flex: 1;
  min-width: 0;
}

.job-card-info strong {
  display: block;
  color: #071a2f;
  font-size: 14px;
  font-weight: 900;
}

.job-card-info span {
  display: block;
  color: #394b61;
  font-size: 12px;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.job-card-info small {
  display: block;
  color: #8b96a6;
  font-size: 10px;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.job-card-action {
  min-width: 86px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  color: #8b96a6;
}

.job-status {
  font-style: normal;
  font-size: 9px;
  font-weight: 900;
  padding: 6px 9px;
  border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
}

.job-status.planning {
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
}

.job-status.epda {
  background: rgba(201, 162, 39, 0.14);
  color: #a9810c;
}

.job-status.fund_received,
.job-status.operation {
  background: rgba(25, 135, 84, 0.1);
  color: #198754;
}

.job-status.completed,
.job-status.invoiced,
.job-status.paid,
.job-status.closed {
  background: rgba(7, 26, 47, 0.1);
  color: #071a2f;
}

.job-status.cancelled {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

/* .qr-mini-table {
  width: 100%;
  border-collapse: collapse;
}

.qr-mini-table td {
  vertical-align: middle;
}

.qr-img {
  width: 46px;
  height: 46px;
}

.qr-caption {
  font-size: 6px;
  color: #667;
  line-height: 1.15;
  text-align: left;
  padding-left: 5px;
}

.qr-caption strong {
  font-size: 6.5px;
  color: #071a2f;
} */

/* .pdf-fixed-footer {
  position: fixed;
  left: 28px;
  right: 28px;
  bottom: 18px;
  border-top: 1px solid #dfe6ef;
  padding-top: 6px;
}

.pdf-footer-table {
  width: 100%;
  border-collapse: collapse;
}

.pdf-footer-left {
  width: 70%;
  text-align: left;
  vertical-align: bottom;
  font-size: 8px;
  color: #7f8a99;
  line-height: 1.35;
}

.pdf-footer-right {
  width: 30%;
  text-align: right;
  vertical-align: bottom;
}

.pdf-qr-wrap {
  display: inline-block;
  text-align: right;
}

.pdf-qr-table {
  border-collapse: collapse;
  margin-left: auto;
}

.pdf-qr-table td {
  vertical-align: middle;
}

.pdf-qr-img {
  width: 44px;
  height: 44px;
}

.pdf-qr-caption {
  font-size: 6px;
  color: #667;
  line-height: 1.15;
  text-align: left;
  padding-left: 5px;
  white-space: nowrap;
}

.pdf-qr-caption strong {
  font-size: 6.5px;
  color: #071a2f;
}

@page {
  margin: 24px 28px 125px 28px;
} */
