﻿    /* ── Month Switcher ── */
    .month-nav {
      display: grid;
      gap: 14px;
      padding: 16px 16px 18px;
      margin-bottom: 18px;
      border-radius: 28px;
      background:
        radial-gradient(circle at 12% 0%, rgba(82, 215, 255, 0.12), transparent 24%),
        radial-gradient(circle at 92% 10%, rgba(234, 114, 255, 0.14), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        rgba(18, 21, 43, 0.56);
      border: 1px solid rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(28px);
      -webkit-backdrop-filter: blur(28px);
      box-shadow:
        0 22px 58px rgba(0, 0, 0, 0.36),
        0 0 0 1px rgba(141, 124, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
      overflow: visible;
    }

    .month-nav-top {
      display: grid;
      grid-template-columns: 44px minmax(0, 1fr) 44px;
      align-items: center;
      gap: 10px;
    }

    .month-header {
      text-align: center;
      min-width: 0;
    }

    .month-title {
      font-size: 19px;
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: var(--text);
    }

    .month-quarter {
      margin-top: 4px;
      font-size: 12px;
      font-weight: 700;
      color: var(--text-muted);
      letter-spacing: 0.02em;
    }

    .month-tabs {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px;
    }

    .month-tab {
      appearance: none;
      border: none;
      min-height: 38px;
      border-radius: 999px;
      background: rgba(255,255,255,0.05);
      color: rgba(244, 247, 255, 0.72);
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      transition: background 0.16s, color 0.16s, transform 0.16s, box-shadow 0.16s;
      -webkit-tap-highlight-color: transparent;
    }

    .month-tab.active {
      background: linear-gradient(135deg, rgba(141, 124, 255, 0.36), rgba(82, 215, 255, 0.18));
      color: #ffffff;
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.14),
        0 10px 24px rgba(141, 124, 255, 0.24),
        0 0 20px rgba(141, 124, 255, 0.16);
    }

    .month-tab:active {
      transform: translateY(1px);
    }

    .month-btn {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: var(--text);
      width: 44px;
      height: 44px;
      border-radius: 14px;
      font-size: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.15s, border-color 0.15s, transform 0.15s, box-shadow 0.15s;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 10px 22px rgba(8, 12, 24, 0.22), inset 0 1px 0 rgba(255,255,255,0.06);
      -webkit-tap-highlight-color: transparent;
    }

    .month-btn:active { background: rgba(141, 124, 255, 0.16); border-color: rgba(141, 124, 255, 0.36); transform: translateY(1px); }

    .tab-panel {
      display: none;
      margin-bottom: var(--page-padding-bottom);
      min-width: 0;
      overflow: visible;
    }

    .tab-panel.active { display: block; }

    .app-content {
      flex: 1 1 auto;
      min-width: 0;
      min-height: 0;
      overflow-x: hidden;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior-y: contain;
      padding-bottom: var(--page-padding-bottom);
      scroll-padding-bottom: var(--page-padding-bottom);
    }

    .is-standalone-pwa .app-content {
      padding-bottom: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom, 0px));
      scroll-padding-bottom: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom, 0px));
    }

    .is-standalone-pwa .tab-panel {
      margin-bottom: 0;
    }

    .ui-overlay-root {
      position: fixed;
      inset: 0;
      z-index: var(--layer-overlay);
      pointer-events: none;
      overflow: visible;
    }

    .ui-overlay-root > * {
      pointer-events: auto;
    }

    .shift-actions-backdrop {
      position: fixed;
      inset: 0;
      z-index: 2;
      background: transparent;
      pointer-events: auto;
      touch-action: manipulation;
    }

    .shift-actions-backdrop.hidden {
      display: none;
    }

    .ui-surface,
    .month-nav,
    .dashboard-card,
    .quick-stats-grid,
    .average-shift-card,
    .shifts-section,
    .form-section,
    .salary-card,
    .settings-card,
    .stat-card,
    .quick-stat,
    .shifts-overview-chip,
    .optional-card,
    .glass-select-trigger,
    .glass-select-menu,
    .sheet-url-text {
      position: relative;
      min-width: 0;
      isolation: isolate;
    }

    .dashboard-head,
    .quick-stats-head,
    .average-shift-head,
    .form-title-row,
    .month-nav-top,
    .section-header-row,
    .settings-row,
    .settings-row-stack,
    .sheet-url-row,
    .confirm-btns,
    .shift-main-row,
    .shift-card-top,
    .shift-title-row,
    .shift-actions,
    .average-shift-row,
    .salary-subtotal-row,
    .salary-summary-row,
    .salary-net-row,
    .salary-row {
      min-width: 0;
    }

    .dashboard-card {
      background:
        radial-gradient(circle at 16% 0%, rgba(141, 124, 255, 0.20), transparent 34%),
        radial-gradient(circle at 92% 12%, rgba(82, 215, 255, 0.16), transparent 34%),
        linear-gradient(150deg, rgba(27, 31, 54, 0.95) 0%, rgba(15, 18, 34, 0.94) 58%, rgba(22, 19, 42, 0.95) 100%);
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: 26px;
      padding: 22px 20px;
      box-shadow:
        0 22px 48px rgba(4, 7, 15, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
      margin-bottom: 18px;
      position: relative;
      overflow: hidden;
    }

    .dashboard-card::before {
      content: '';
      position: absolute;
      right: -50px;
      bottom: -90px;
      width: 220px;
      height: 220px;
      background: radial-gradient(circle, rgba(82, 215, 255, 0.22), transparent 72%);
      pointer-events: none;
      opacity: 0.5;
    }

    .dashboard-card::after {
      content: '';
      position: absolute;
      left: -60px;
      top: -80px;
      width: 220px;
      height: 220px;
      background: radial-gradient(circle, rgba(141, 124, 255, 0.18), transparent 72%);
      pointer-events: none;
      opacity: 0.5;
    }

    .dashboard-head {
      display: grid;
      gap: 8px;
      margin-bottom: 14px;
    }

    .dashboard-eyebrow {
      font-size: 12px;
      color: rgba(244, 247, 255, 0.84);
      letter-spacing: 0.04em;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 0;
    }

    .dashboard-value {
      font-size: clamp(38px, 10vw, 50px);
      font-weight: 800;
      line-height: 1;
      letter-spacing: -0.03em;
      color: #ffffff;
      background: none;
      -webkit-text-fill-color: #ffffff;
      font-variant-numeric: tabular-nums;
    }

    .dashboard-month-income {
      margin-top: 14px;
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 12px;
      min-height: 24px;
    }

    .dashboard-month-income-label {
      font-size: 13px;
      color: rgba(244, 247, 255, 0.78);
      font-weight: 600;
      letter-spacing: 0.01em;
      text-transform: none;
    }

    .dashboard-month-income-value {
      font-size: 24px;
      font-weight: 700;
      line-height: 1.1;
      color: rgba(244, 247, 255, 0.96);
      font-variant-numeric: tabular-nums;
      letter-spacing: -0.01em;
      white-space: nowrap;
      text-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
    }

    .dashboard-total {
      font-size: 22px;
      font-weight: 700;
      color: rgba(244, 247, 255, 0.76);
    }

    .dashboard-sub {
      margin-top: 10px;
      color: rgba(244, 247, 255, 0.9);
      font-size: 14px;
      line-height: 1.45;
    }

    .dashboard-average {
      margin-top: 6px;
      font-size: 12px;
      line-height: 1.35;
      color: rgba(244, 247, 255, 0.74);
      font-variant-numeric: tabular-nums;
      letter-spacing: 0.01em;
    }

    .dashboard-average.is-muted {
      color: rgba(244, 247, 255, 0.56);
    }

    .progress-track {
      margin-top: 0;
      background: rgba(255, 255, 255, 0.13);
      border-radius: 999px;
      height: 10px;
      overflow: hidden;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .progress-fill {
      height: 100%;
      width: 0%;
      border-radius: inherit;
      background: linear-gradient(90deg, #72dcff 0%, #8d7cff 55%, #ea72ff 100%);
      transition: width 0.2s ease;
      box-shadow:
        0 0 12px rgba(141, 124, 255, 0.45),
        0 0 22px rgba(82, 215, 255, 0.2);
    }

    .quick-stats-grid {
      display: grid;
      gap: 10px;
      margin-bottom: 20px;
      padding: 14px 14px 12px;
      border-radius: 28px;
      background:
        radial-gradient(circle at 12% 0%, rgba(141, 124, 255, 0.06), transparent 28%),
        radial-gradient(circle at 90% 100%, rgba(82, 215, 255, 0.05), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
        rgba(17, 20, 39, 0.52);
      border: 1px solid rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow:
        0 14px 30px rgba(6, 9, 18, 0.18),
        inset 0 1px 0 rgba(255,255,255,0.05);
      overflow: visible;
    }

    .quick-stats-head {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 10px;
      min-width: 0;
    }

    .quick-stats-title {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(244, 247, 255, 0.52);
    }

    .quick-stats-note {
      font-size: 11px;
      color: rgba(244, 247, 255, 0.40);
    }

    .quick-stats-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      align-items: stretch;
      gap: 0;
    }

    .quick-stat {
      position: relative;
      padding: 6px 10px 7px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      min-height: 66px;
      min-width: 0;
      box-shadow: none;
      border-radius: 18px;
      transition: transform 0.2s ease, opacity 0.2s ease;
      overflow: visible;
    }

    .quick-stat:hover {
      transform: translateY(-1px);
    }

    .quick-stat + .quick-stat {
      padding-left: 14px;
    }

    .quick-stat + .quick-stat::before {
      content: '';
      position: absolute;
      left: 0;
      top: 12px;
      bottom: 12px;
      width: 1px;
      background: linear-gradient(180deg, transparent, rgba(255,255,255,0.08), transparent);
    }

    .quick-stat-value {
      font-size: clamp(17px, 4.6vw, 22px);
      font-weight: 900;
      line-height: 1;
      color: #fff;
      min-width: 0;
      max-width: 100%;
      text-align: center;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: clip;
      font-variant-numeric: tabular-nums;
      letter-spacing: -0.03em;
      text-shadow: 0 10px 28px rgba(0, 0, 0, 0.20);
    }

    .quick-stat-value.night { color: #c6a4ff; }
    .quick-stat-value.holiday { color: #7ef0cf; }
    .quick-stat-value.shifts { color: #f4f7ff; }

    .quick-stat-value.is-updated {
      animation: quickMetricPulse 0.45s ease;
    }

    .quick-stats-grid .stat-label {
      font-size: 11px;
      color: rgba(244, 247, 255, 0.58);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 700;
      line-height: 1.1;
      min-width: 0;
      max-width: 100%;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .average-shift-card {
      display: grid;
      gap: 10px;
      margin-bottom: 18px;
      padding: 14px 14px 12px;
      border-radius: 24px;
      background:
        radial-gradient(circle at 10% 0%, rgba(141, 124, 255, 0.08), transparent 28%),
        radial-gradient(circle at 92% 100%, rgba(82, 215, 255, 0.07), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
        rgba(17, 20, 39, 0.54);
      border: 1px solid rgba(255, 255, 255, 0.07);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow:
        0 14px 30px rgba(6, 9, 18, 0.18),
        inset 0 1px 0 rgba(255,255,255,0.05);
      overflow: visible;
    }

    .average-shift-head {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 8px;
    }

    .average-shift-title {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgba(244, 247, 255, 0.66);
      font-weight: 700;
    }

    .average-shift-meta {
      font-size: 11px;
      color: rgba(244, 247, 255, 0.48);
      line-height: 1.3;
      text-align: right;
      min-width: 0;
      max-width: 58%;
    }

    .average-shift-list {
      display: grid;
      gap: 8px;
    }

    .average-shift-row {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 12px;
      padding-top: 8px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .average-shift-row:first-child {
      padding-top: 0;
      border-top: none;
    }

    .average-shift-label {
      font-size: 13px;
      color: rgba(244, 247, 255, 0.7);
      line-height: 1.35;
      min-width: 0;
      max-width: 56%;
      white-space: normal;
    }

    .average-shift-value {
      font-size: 15px;
      color: #fff;
      font-weight: 800;
      letter-spacing: -0.01em;
      white-space: nowrap;
      flex-shrink: 0;
      font-variant-numeric: tabular-nums;
      text-align: right;
    }

    .section-header-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .section-link {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.08);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      padding: 8px 12px;
      border-radius: 999px;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .section-link:active { color: #fff; background: rgba(141, 124, 255, 0.16); }

    .compact-shift .shift-income-row {
      padding-top: 8px;
    }

    .compact-shift .shift-income-row-label {
      font-size: 11px;
    }

    .compact-shift .shift-income-chip {
      font-size: 14px;
    }

    .compact-shift .shift-card-top {
      gap: 8px;
    }

    .compact-shift .shift-type {
      font-size: 14px;
    }

    .compact-shift .shift-type-content {
      gap: 5px;
    }

    .compact-shift .shift-direction-row {
      font-size: 12px;
      gap: 5px;
    }

    .compact-shift .shift-main-row {
      gap: 8px;
    }

    .compact-shift .shift-datetime-line {
      font-size: 12px;
      gap: 4px;
    }

    .compact-shift .shift-duration {
      font-size: 11px;
      gap: 4px;
    }

    .compact-shift .shift-tech-line {
      font-size: 11px;
      column-gap: 4px;
      row-gap: 3px;
    }

    .compact-shift .shift-income-row-label-content {
      gap: 3px;
    }

    .compact-shift .shift-inline-icon {
      width: 12px;
      height: 12px;
    }

    .compact-shift .shift-actions-trigger {
      width: 32px;
      height: 32px;
      border-radius: 11px;
    }

    .compact-shift .shift-top-right {
      gap: 6px;
    }

    .salary-card,
    .settings-card {
      background:
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
        rgba(18, 21, 43, 0.72);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 24px;
      padding: 18px;
      margin-bottom: 14px;
      box-shadow: 0 18px 34px rgba(6, 9, 18, 0.22), inset 0 1px 0 rgba(255,255,255,0.05);
      overflow: visible;
    }

    .settings-card {
      display: grid;
      gap: 14px;
    }

    .salary-hero {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .salary-title {
      font-size: 22px;
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }

    .salary-text {
      color: rgba(244, 247, 255, 0.66);
      font-size: 14px;
      line-height: 1.6;
    }

    .salary-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 10px;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(141, 124, 255, 0.16), rgba(82, 215, 255, 0.12));
      color: #ecf3ff;
      font-size: 13px;
      font-weight: 700;
      width: fit-content;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
    }

    .settings-list {
      display: grid;
      gap: 14px;
      margin-top: 12px;
    }

    .settings-row {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
      padding: 12px 14px;
      border-top: none;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 18px;
      width: 100%;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    }

    .settings-row:first-child { border-top: none; }

    .settings-label {
      font-size: 14px;
      font-weight: 700;
    }

    .settings-value {
      font-size: 13px;
      color: rgba(244, 247, 255, 0.58);
      text-align: right;
    }

    .settings-page-title {
      font-size: 28px;
      font-weight: 800;
      line-height: 1.15;
      margin: 10px 0 16px;
      letter-spacing: -0.04em;
      background: linear-gradient(135deg, #ffffff 0%, #b4b8ff 40%, #ff9af0 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .settings-section-title {
      font-size: 13px;
      color: rgba(244, 247, 255, 0.6);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-weight: 700;
      margin: 16px 0 10px;
    }

    .settings-note {
      font-size: 12px;
      color: rgba(244, 247, 255, 0.58);
      line-height: 1.35;
      margin-top: 4px;
    }

    .settings-row-stack {
      align-items: flex-start;
    }

    .settings-input-wrap,
    .settings-inline-field {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: auto;
      max-width: 100%;
    }

    .settings-input {
      width: min(100%, 240px);
      background:
        linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03)),
        rgba(18, 21, 43, 0.72);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      color: var(--text);
      font-size: 14px;
      padding: 11px 12px;
      outline: none;
      transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
      -webkit-appearance: none;
      appearance: none;
      backdrop-filter: blur(12px);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    }

    .settings-input:focus {
      border-color: var(--accent);
      box-shadow:
        0 0 0 3px rgba(141, 124, 255, 0.18),
        0 12px 24px rgba(141, 124, 255, 0.08);
      transform: translateY(-1px);
    }

    .settings-input.compact {
      width: 100px;
      text-align: right;
      font-variant-numeric: tabular-nums;
    }

    .settings-unit {
      color: rgba(244, 247, 255, 0.58);
      font-size: 13px;
      white-space: nowrap;
    }

    .segmented {
      width: 100%;
      display: grid;
      gap: 0;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      background:
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
        rgba(18, 21, 43, 0.68);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 18px;
      overflow: hidden;
      backdrop-filter: blur(16px);
      box-shadow: 0 12px 24px rgba(6, 9, 18, 0.2), inset 0 1px 0 rgba(255,255,255,0.05);
    }

    .segmented.two {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .segmented-btn {
      appearance: none;
      border: none;
      background: transparent;
      color: rgba(244, 247, 255, 0.66);
      padding: 11px 12px;
      min-height: 44px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.15s, color 0.15s, box-shadow 0.15s;
      -webkit-tap-highlight-color: transparent;
    }

    .segmented-btn + .segmented-btn {
      border-left: 1px solid rgba(255,255,255,0.06);
    }

    .segmented-btn.active {
      background: linear-gradient(135deg, rgba(141, 124, 255, 0.22), rgba(82, 215, 255, 0.12));
      color: #fff;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
    }

    .salary-summary-card {
      padding: 20px 18px;
    }

    .salary-month-nav {
      margin-bottom: 12px;
    }

    .salary-chip {
      text-transform: uppercase;
      letter-spacing: 0.4px;
      font-size: 12px;
    }

    .salary-total-amount {
      margin-top: 12px;
      font-size: clamp(40px, 10vw, 54px);
      line-height: 1;
      font-weight: 900;
      letter-spacing: -0.05em;
      background: linear-gradient(135deg, #ffffff 0%, #9edcff 34%, #b79dff 66%, #ff9bf2 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 16px 32px rgba(141, 124, 255, 0.18);
    }

    .salary-total-caption {
      margin-top: 8px;
      color: rgba(244, 247, 255, 0.62);
      font-size: 14px;
    }

    .salary-disclaimer {
      font-size: 12px;
      line-height: 1.45;
      color: rgba(244, 247, 255, 0.58);
      margin: 12px 4px 18px;
    }

    .salary-list {
      display: grid;
      gap: 10px;
      margin-bottom: 12px;
    }

    .salary-row {
      display: grid;
      grid-template-columns: 58px minmax(0, 1fr) auto;
      gap: 10px;
      align-items: start;
      padding: 12px 14px;
      border-radius: 18px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.05);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    }

    .salary-code {
      color: rgba(244, 247, 255, 0.58);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.04em;
      padding-top: 4px;
    }

    .salary-main {
      min-width: 0;
    }

    .salary-name {
      font-size: 15px;
      font-weight: 700;
      line-height: 1.35;
    }

    .salary-name span {
      color: rgba(244, 247, 255, 0.58);
      font-weight: 500;
    }

    .salary-note {
      color: rgba(244, 247, 255, 0.58);
      font-size: 12px;
      line-height: 1.35;
      margin-top: 3px;
    }

    .salary-value {
      font-size: 15px;
      font-weight: 700;
      white-space: nowrap;
      text-align: right;
      color: #fff;
    }

    .salary-subtotal-row,
    .salary-summary-row,
    .salary-net-row {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 12px;
    }

    .salary-subtotal-row {
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px solid rgba(255,255,255,0.08);
      font-size: 14px;
    }

    .salary-subtotal-label,
    .salary-summary-row span:first-child {
      color: var(--text);
      font-weight: 500;
      min-width: 0;
      max-width: 100%;
      white-space: normal;
      overflow-wrap: anywhere;
      word-break: break-word;
    }

    .salary-subtotal-value,
    .salary-summary-row span:last-child {
      font-weight: 700;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .salary-summary-list {
      display: grid;
      gap: 12px;
    }

    .salary-summary-row {
      font-size: 14px;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .salary-summary-row:last-child {
      border-bottom: none;
    }

    .salary-net-row {
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid rgba(255,255,255,0.08);
      font-size: 17px;
      font-weight: 800;
      color: #84f6df;
    }

    .settings-help-block {
      color: rgba(244, 247, 255, 0.58);
      font-size: 12px;
      line-height: 1.5;
      margin-top: 12px;
    }


