/*!*************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[3]!./src/app/miniapp/miniapp.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************************/
  :root {
    --eko-green: #6FBF3D;
    --eko-green-dark: #4A8B2A;
    --eko-green-deep: #2D5A1A;
    --eko-green-bg: #F1F8EC;
    --eko-leaf: #8BC34A;
    --bg: #FAFBF7;
    --card: #FFFFFF;
    --text: #1A2614;
    --text-soft: #5C6B53;
    --text-mute: #95A089;
    --border: #E8EDE2;
    --border-soft: #F0F4EB;
    --danger: #E05B43;
    --warning: #E8A33D;
    --success: #6FBF3D;
    --shadow-sm: 0 1px 2px rgba(45, 90, 26, 0.04);
    --shadow-md: 0 4px 16px rgba(45, 90, 26, 0.08);
    --shadow-lg: 0 12px 40px rgba(45, 90, 26, 0.12);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

  body {
    font-family: 'Manrope', sans-serif;
    background: linear-gradient(180deg, #E8EDE2 0%, #D6DDD0 100%);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    line-height: 1.4;
  }

  /* Phone frame */
  .phone {
    width: 390px;
    height: 844px;
    background: var(--bg);
    border-radius: 48px;
    overflow: hidden;
    position: relative;
    box-shadow:
      0 0 0 12px #1A2614,
      0 0 0 14px #2D3A24,
      0 40px 80px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
  }

  /* Status bar */
  .status-bar {
    height: 44px;
    background: var(--bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 28px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    flex-shrink: 0;
    position: relative;
    z-index: 10;
  }
  .status-bar::after {
    content: "";
    position: absolute;
    top: 8px; left: 50%;
    transform: translateX(-50%);
    width: 110px; height: 30px;
    background: #1A2614;
    border-radius: 20px;
  }
  .status-icons { display: flex; gap: 5px; align-items: center; }
  .status-icons svg { width: 16px; height: 11px; }

  /* MAX header (host messenger) */
  .max-header {
    background: var(--bg);
    padding: 8px 16px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-soft);
    flex-shrink: 0;
  }
  .max-back {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-soft);
    cursor: pointer;
  }
  .max-title {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .max-app-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #FAFFF5 0%, #E8F4DD 100%);
    border: 1px solid rgba(111, 191, 61, 0.25);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 6px rgba(45, 90, 26, 0.12);
    overflow: hidden;
    padding: 4px;
  }
  .max-app-icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .max-app-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.2px;
  }
  .max-app-sub {
    font-size: 11px;
    color: var(--text-mute);
    font-weight: 500;
  }
  .max-actions {
    display: flex; gap: 4px;
  }
  .max-actions div {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-soft);
    cursor: pointer;
  }

  /* App content */
  .app {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    background: var(--bg);
  }
  .app::-webkit-scrollbar { display: none; }

  .screen {
    display: none;
    padding: 16px 20px 100px;
    animation: fadeIn 0.3s ease;
  }
  .screen.active { display: block; }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* HOME SCREEN */
  .greeting {
    margin-bottom: 20px;
    margin-top: 8px;
  }
  .greeting-eyebrow {
    font-size: 12px;
    color: var(--text-mute);
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .greeting-title {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.8px;
    line-height: 1.15;
  }
  .greeting-title em {
    font-style: italic;
    color: var(--eko-green-dark);
    font-weight: 500;
  }

  /* Balance card — hero */
  .balance-card {
    background: linear-gradient(135deg, #6FBF3D 0%, #4A8B2A 60%, #2D5A1A 100%);
    border-radius: 24px;
    padding: 24px;
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: 0 16px 32px -12px rgba(74, 139, 42, 0.45);
  }
  .balance-card::before {
    content: "";
    position: absolute;
    top: -40px; right: -40px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
    border-radius: 50%;
  }
  .balance-card::after {
    content: "";
    position: absolute;
    bottom: -60px; left: -40px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
    border-radius: 50%;
  }
  .balance-leaf {
    position: absolute;
    top: 20px; right: 20px;
    opacity: 0.25;
  }
  .balance-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
    opacity: 0.85;
    margin-bottom: 10px;
    position: relative;
  }
  .balance-amount {
    font-family: 'Fraunces', serif;
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -1.5px;
    margin-bottom: 4px;
    position: relative;
    line-height: 1;
  }
  .balance-amount .currency {
    font-size: 24px;
    font-weight: 500;
    margin-left: 4px;
    opacity: 0.85;
  }
  .balance-amount .kop {
    font-size: 22px;
    opacity: 0.7;
    font-weight: 500;
  }
  .balance-meta {
    font-size: 13px;
    opacity: 0.85;
    margin-top: 12px;
    position: relative;
    display: flex;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.18);
  }
  .balance-meta strong {
    font-weight: 700;
    opacity: 1;
  }

  /* Section heading */
  .section-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 14px;
    margin-top: 4px;
  }
  .section-title {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.4px;
  }
  .section-link {
    font-size: 13px;
    color: var(--eko-green-dark);
    font-weight: 600;
    text-decoration: none;
  }

  /* Quick sections grid */
  .sections-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
  }
  .section-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 18px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
  }
  .section-card:active {
    transform: scale(0.98);
    box-shadow: var(--shadow-sm);
  }
  .section-card.wide { grid-column: 1 / -1; }
  .section-card-icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: var(--eko-green-bg);
    color: var(--eko-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
  }
  .section-card-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
  }
  .section-card-meta {
    font-size: 12px;
    color: var(--text-mute);
    font-weight: 500;
  }
  .section-card-badge {
    position: absolute;
    top: 14px; right: 14px;
    background: var(--danger);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    min-width: 22px;
    text-align: center;
  }

  /* Recent activity */
  .activity-list {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
  }
  .activity-item {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-soft);
    cursor: pointer;
  }
  .activity-item:last-child { border-bottom: none; }
  .activity-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .activity-icon.in { background: rgba(111, 191, 61, 0.12); color: var(--eko-green-dark); }
  .activity-icon.out { background: rgba(224, 91, 67, 0.12); color: var(--danger); }
  .activity-info { flex: 1; min-width: 0; }
  .activity-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .activity-date {
    font-size: 11px;
    color: var(--text-mute);
    margin-top: 2px;
  }
  .activity-amount {
    font-size: 14px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
  }
  .activity-amount.in { color: var(--eko-green-dark); }
  .activity-amount.out { color: var(--text); }

  /* List screens — generic */
  .screen-header {
    margin-bottom: 18px;
    margin-top: 4px;
  }
  .screen-title {
    font-family: 'Fraunces', serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.8px;
    line-height: 1.1;
  }
  .screen-sub {
    font-size: 13px;
    color: var(--text-mute);
    margin-top: 4px;
    font-weight: 500;
  }

  /* Filter pills */
  .filter-row {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .filter-row::-webkit-scrollbar { display: none; }
  .filter-pill {
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text-soft);
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.15s ease;
  }
  .filter-pill.active {
    background: var(--eko-green-deep);
    color: white;
    border-color: var(--eko-green-deep);
  }

  /* Contract card */
  .contract-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 18px;
    margin-bottom: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
  }
  .contract-card:active { transform: scale(0.99); }
  .contract-card.featured {
    background: linear-gradient(135deg, #FAFFF5 0%, #F1F8EC 100%);
    border-color: rgba(111, 191, 61, 0.3);
  }
  .contract-card.featured::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, var(--eko-green), var(--eko-green-dark));
  }
  .contract-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
  }
  .contract-num {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-mute);
    font-weight: 600;
    margin-bottom: 4px;
  }
  .contract-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    letter-spacing: -0.2px;
  }
  .contract-status {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(111, 191, 61, 0.15);
    color: var(--eko-green-dark);
    flex-shrink: 0;
  }
  .contract-balance {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed var(--border);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .contract-balance-label {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-mute);
    font-weight: 600;
    letter-spacing: 0.6px;
  }
  .contract-balance-val {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: var(--text);
  }
  .contract-balance-val.negative { color: var(--danger); }
  .contract-arrow {
    color: var(--text-mute);
    margin-left: 8px;
  }

  /* Receipt card */
  .receipt-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
  }
  .receipt-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--eko-green-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--eko-green-dark);
    flex-shrink: 0;
  }
  .receipt-info { flex: 1; min-width: 0; }
  .receipt-num {
    font-size: 11px;
    color: var(--text-mute);
    font-weight: 600;
    letter-spacing: 0.4px;
    margin-bottom: 2px;
  }
  .receipt-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
    letter-spacing: -0.1px;
  }
  .receipt-meta {
    font-size: 11px;
    color: var(--text-mute);
    font-weight: 500;
  }
  .receipt-right {
    text-align: right;
    flex-shrink: 0;
  }
  .receipt-amount {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.3px;
    margin-bottom: 4px;
  }
  .receipt-status {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 7px;
    border-radius: 6px;
    display: inline-block;
  }
  .status-paid { background: rgba(111, 191, 61, 0.15); color: var(--eko-green-dark); }
  .status-pending { background: rgba(232, 163, 61, 0.15); color: var(--warning); }
  .status-overdue { background: rgba(224, 91, 67, 0.15); color: var(--danger); }

  /* Power of attorney card */
  .poa-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px;
    margin-bottom: 10px;
    cursor: pointer;
  }
  .poa-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
  }
  .poa-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.1px;
  }
  .poa-num {
    font-size: 11px;
    color: var(--text-mute);
    font-weight: 600;
    margin-top: 2px;
  }
  .poa-period {
    display: flex;
    gap: 16px;
    padding-top: 10px;
    border-top: 1px dashed var(--border);
  }
  .poa-period-item { flex: 1; }
  .poa-period-label {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-mute);
    font-weight: 600;
    letter-spacing: 0.6px;
    margin-bottom: 2px;
  }
  .poa-period-val {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
  }

  /* Detail screens */
  .detail-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    cursor: pointer;
    padding: 6px 0;
  }

  .detail-hero {
    background: linear-gradient(135deg, #6FBF3D 0%, #4A8B2A 60%, #2D5A1A 100%);
    border-radius: 24px;
    padding: 22px;
    color: white;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 32px -12px rgba(74, 139, 42, 0.4);
  }
  .detail-hero::before {
    content: "";
    position: absolute;
    top: -40px; right: -40px;
    width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
    border-radius: 50%;
  }
  .detail-hero-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    font-weight: 600;
    margin-bottom: 8px;
    position: relative;
  }
  .detail-hero-title {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    position: relative;
    line-height: 1.2;
  }
  .detail-hero-amount {
    font-family: 'Fraunces', serif;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -1.2px;
    line-height: 1;
    position: relative;
    margin-bottom: 4px;
  }
  .detail-hero-sub {
    font-size: 12px;
    opacity: 0.85;
    position: relative;
    font-weight: 500;
  }

  .detail-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 4px 16px;
    margin-bottom: 16px;
  }
  .detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-soft);
    gap: 12px;
  }
  .detail-row:last-child { border-bottom: none; }
  .detail-label {
    font-size: 13px;
    color: var(--text-mute);
    font-weight: 500;
  }
  .detail-value {
    font-size: 13px;
    color: var(--text);
    font-weight: 600;
    text-align: right;
    letter-spacing: -0.1px;
  }

  /* Movements list (поступления/списания) */
  .movements-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 20px 4px 12px;
  }
  .movements-title {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.3px;
  }
  .movement-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .movement-icon {
    width: 38px; height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .movement-icon.in { background: rgba(111, 191, 61, 0.12); color: var(--eko-green-dark); }
  .movement-icon.out { background: rgba(224, 91, 67, 0.12); color: var(--danger); }
  .movement-info { flex: 1; min-width: 0; }
  .movement-type {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-mute);
    font-weight: 700;
    letter-spacing: 0.6px;
    margin-bottom: 2px;
  }
  .movement-desc {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
  }
  .movement-date {
    font-size: 11px;
    color: var(--text-mute);
    font-weight: 500;
  }
  .movement-amount {
    font-size: 14px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
    letter-spacing: -0.2px;
  }
  .movement-amount.in { color: var(--eko-green-dark); }
  .movement-amount.out { color: var(--text); }

  /* Buttons */
  .btn-row {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
  }
  .btn {
    flex: 1;
    padding: 14px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.15s ease;
    letter-spacing: -0.1px;
  }
  .btn-primary {
    background: var(--eko-green-deep);
    color: white;
  }
  .btn-primary:active { background: var(--eko-green-dark); transform: scale(0.98); }
  .btn-secondary {
    background: var(--card);
    color: var(--text);
    border: 1px solid var(--border);
  }
  .btn-secondary:active { transform: scale(0.98); }

  /* Bottom nav */
  .bottom-nav {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 10px 8px 24px;
    display: flex;
    justify-content: space-around;
    z-index: 50;
  }
  .nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 6px 4px;
    cursor: pointer;
    color: var(--text-mute);
    transition: color 0.2s ease;
    position: relative;
  }
  .nav-item.active { color: var(--eko-green-deep); }
  .nav-item.active::before {
    content: "";
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 24px; height: 3px;
    background: var(--eko-green-deep);
    border-radius: 0 0 3px 3px;
  }
  .nav-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: -0.1px;
  }

  /* PDF preview modal */
  .modal-backdrop {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26, 38, 20, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 100;
    display: none;
    align-items: flex-end;
    justify-content: center;
    animation: fadeIn 0.25s ease;
  }
  .modal-backdrop.active { display: flex; }
  .modal {
    background: var(--bg);
    width: 100%;
    border-radius: 28px 28px 0 0;
    padding: 12px 20px 30px;
    max-height: 88%;
    overflow-y: auto;
    animation: slideUp 0.3s cubic-bezier(0.32, 0.72, 0, 1);
  }
  .modal::-webkit-scrollbar { display: none; }
  @keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }
  .modal-grabber {
    width: 36px; height: 5px;
    background: var(--border);
    border-radius: 3px;
    margin: 0 auto 16px;
  }
  .modal-title {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.4px;
    margin-bottom: 4px;
  }
  .modal-sub {
    font-size: 12px;
    color: var(--text-mute);
    margin-bottom: 18px;
    font-weight: 500;
  }
  .pdf-preview {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 18px;
    font-size: 9px;
    line-height: 1.45;
    color: #333;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
  }
  .pdf-preview::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent 0 30px, rgba(0,0,0,0.02) 30px 31px);
    pointer-events: none;
  }
  .pdf-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 2px solid var(--eko-green-deep);
    padding-bottom: 10px;
    margin-bottom: 12px;
  }
  .pdf-logo {
    font-family: 'Fraunces', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--eko-green-deep);
  }
  .pdf-logo-sub { font-size: 8px; color: var(--text-mute); font-weight: 500; }
  .pdf-num { text-align: right; font-size: 8px; color: var(--text-mute); }
  .pdf-num strong { font-size: 11px; color: var(--text); }
  .pdf-section { margin-bottom: 10px; }
  .pdf-section-title { font-weight: 700; font-size: 9px; text-transform: uppercase; color: var(--eko-green-dark); letter-spacing: 0.5px; margin-bottom: 4px; }
  .pdf-table { width: 100%; border-collapse: collapse; font-size: 7.5px; margin-top: 6px; }
  .pdf-table th { background: var(--eko-green-bg); padding: 5px 4px; text-align: left; font-weight: 700; color: var(--eko-green-deep); border: 1px solid var(--border); }
  .pdf-table td { padding: 5px 4px; border: 1px solid var(--border); vertical-align: top; line-height: 1.4; }
  .pdf-table td.num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
  .pdf-total { display: flex; justify-content: space-between; padding-top: 8px; border-top: 1px solid var(--border); margin-top: 10px; font-weight: 700; font-size: 10px; }

  /* Empty state spacing */
  .spacer-bottom { height: 16px; }

  /* Hide scroll bars in app */
  .app::-webkit-scrollbar { width: 0; }

  /* Brand Mark for app icon (recycle leaves) */
  .leaf-mark { color: white; }

