
    /* MEDEDU LEK DESIGN TOKENS */



    /* GLOBAL SPEC SHEET RESET & CANVAS */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      -webkit-font-smoothing: antialiased;
    }

    body {
      background-color: var(--bg);
      color: var(--text);
      font-family: var(--font-body);
      line-height: 1.5;
      padding: 32px 24px 80px 24px;
      transition: background-color 0.25s ease, color 0.25s ease;
    }

    .spec-container {
      max-width: 1440px;
      margin: 0 auto;
    }

    /* SPEC HEADER */
    .spec-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding-bottom: 24px;
      margin-bottom: 32px;
      border-bottom: 1px solid var(--border);
      flex-wrap: wrap;
      gap: 16px;
    }

    .spec-meta {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-weight: 700;
      color: var(--brand);
      margin-bottom: 6px;
    }

    .spec-title {
      font-family: var(--font-serif);
      font-size: 32px;
      font-weight: 600;
      line-height: 1.2;
      color: var(--text);
      margin-bottom: 8px;
    }

    .spec-subtitle {
      font-size: 14px;
      color: var(--text-muted);
      max-width: 820px;
    }

    .theme-toggle-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--surface);
      border: 1px solid var(--border);
      color: var(--text);
      padding: 8px 16px;
      border-radius: var(--radius-pill);
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      min-height: 44px;
    }
    .theme-toggle-btn:hover {
      border-color: var(--brand);
      background: var(--surface-raised);
    }
    .theme-toggle-btn:focus-visible {
      outline: 2px solid var(--border-focus);
      outline-offset: 2px;
    }

    /* SECTION TITLES */
    .section-banner {
      margin: 44px 0 20px 0;
    }
    .section-pill {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-subtle);
      margin-bottom: 4px;
    }
    .section-h2 {
      font-size: 20px;
      font-weight: 700;
      color: var(--text);
      letter-spacing: -0.01em;
    }
    .section-desc {
      font-size: 13px;
      color: var(--text-muted);
      margin-top: 4px;
    }

    /* PHONE FRAME COMPONENT (390px) */
    .mobile-showcase-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(360px, 390px));
      gap: 28px;
      justify-content: flex-start;
      margin-bottom: 40px;
    }

    .phone-container {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .phone-card-label {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      font-weight: 700;
      color: var(--text-muted);
      padding: 0 4px;
    }
    .phone-badge {
      display: inline-flex;
      align-items: center;
      padding: 3px 8px;
      border-radius: var(--radius-pill);
      font-size: 11px;
      font-weight: 600;
      background: var(--surface-raised);
      border: 1px solid var(--border);
      color: var(--text-muted);
    }
    .phone-badge.primary {
      background: var(--brand-surface);
      color: var(--brand);
      border-color: rgba(24, 90, 219, 0.25);
    }
    .phone-badge.warning {
      background: var(--warning-surface);
      color: var(--warning);
      border-color: rgba(179, 94, 20, 0.25);
    }
    .phone-badge.danger {
      background: var(--danger-surface);
      color: var(--danger);
      border-color: rgba(192, 45, 45, 0.25);
    }

    .phone-mockup {
      width: 390px;
      height: 844px;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 40px;
      box-shadow: var(--shadow-lg);
      overflow-y: auto;
      overflow-x: hidden;
      display: flex;
      flex-direction: column;
      position: relative;
      scrollbar-width: thin;
    }

    /* PHONE INNER ELEMENTS */
    .phone-status-bar {
      height: 44px;
      padding: 0 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      font-weight: 600;
      color: var(--text);
      flex-shrink: 0;
      background: var(--bg);
      position: sticky;
      top: 0;
      z-index: 20;
    }

    .phone-app-bar {
      padding: 10px 16px 14px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: var(--bg);
      position: sticky;
      top: 44px;
      z-index: 19;
      border-bottom: 1px solid var(--border);
    }

    .phone-back-btn {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      border: none;
      color: var(--text);
      cursor: pointer;
      border-radius: var(--radius-sm);
    }
    .phone-back-btn:focus-visible {
      outline: 2px solid var(--border-focus);
    }

    .phone-bar-title {
      font-size: 17px;
      font-weight: 700;
      color: var(--text);
    }

    .save-indicator {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 600;
      color: var(--text-muted);
    }
    .save-indicator.saving {
      color: var(--brand);
    }
    .save-indicator.failed {
      color: var(--danger);
    }

    .phone-body {
      flex: 1;
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    /* SETTINGS GROUP BOX */
    .settings-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .group-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: 0 4px;
    }

    .group-title {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text-muted);
    }

    .group-note {
      font-size: 11px;
      color: var(--text-subtle);
    }

    .group-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .setting-item {
      padding: 14px 16px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      border-bottom: 1px solid var(--border);
    }
    .setting-item:last-child {
      border-bottom: none;
    }

    .setting-row-inline {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }

    .setting-info {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .setting-label {
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
    }

    .setting-desc {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.4;
    }

    /* THEME CARDS PICKER (VISUAL LIVE PREVIEW) */
    .theme-picker-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-top: 4px;
    }

    .theme-option-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 8px;
      border-radius: var(--radius-md);
      border: 2px solid var(--border);
      background: var(--surface-raised);
      cursor: pointer;
      transition: var(--transition);
      min-height: 88px;
      justify-content: space-between;
      text-align: center;
    }
    .theme-option-card:hover {
      border-color: var(--border-focus);
    }
    .theme-option-card:focus-visible {
      outline: 2px solid var(--border-focus);
      outline-offset: 2px;
    }
    .theme-option-card.selected {
      border-color: var(--brand);
      background: var(--brand-surface);
    }

    /* MINI PREVIEW WIREFRAMES */
    .mini-theme-preview {
      width: 100%;
      height: 48px;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
      padding: 4px 6px;
      gap: 3px;
      position: relative;
      overflow: hidden;
    }
    /* Jasny Preview */
    .preview-light {
      background: #FCFBF8;
      border-color: #DDD8CD;
    }
    .preview-light .mini-bar {
      height: 5px;
      width: 60%;
      background: #185ADB;
      border-radius: 2px;
    }
    .preview-light .mini-line {
      height: 4px;
      background: #DDD8CD;
      border-radius: 2px;
    }
    .preview-light .mini-box {
      height: 14px;
      background: #FFFFFF;
      border: 1px solid #DDD8CD;
      border-radius: 3px;
      margin-top: 2px;
    }

    /* Ciemny Preview */
    .preview-dark {
      background: #0A1628;
      border-color: #24416B;
    }
    .preview-dark .mini-bar {
      height: 5px;
      width: 60%;
      background: #3B82F6;
      border-radius: 2px;
    }
    .preview-dark .mini-line {
      height: 4px;
      background: #1F385C;
      border-radius: 2px;
    }
    .preview-dark .mini-box {
      height: 14px;
      background: #112138;
      border: 1px solid #24416B;
      border-radius: 3px;
      margin-top: 2px;
    }

    /* System Preview (Split 50/50) */
    .preview-system {
      background: linear-gradient(90deg, #FCFBF8 50%, #0A1628 50%);
      border-color: #94A3B8;
    }
    .preview-system-split {
      display: flex;
      width: 100%;
      height: 100%;
      gap: 4px;
    }
    .preview-system-left, .preview-system-right {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 3px;
    }
    .preview-system-left .mini-bar { height: 4px; width: 70%; background: #185ADB; border-radius: 2px; }
    .preview-system-left .mini-box { height: 16px; background: #FFF; border: 1px solid #DDD; border-radius: 2px; }
    .preview-system-right .mini-bar { height: 4px; width: 70%; background: #3B82F6; border-radius: 2px; }
    .preview-system-right .mini-box { height: 16px; background: #112138; border: 1px solid #24416B; border-radius: 2px; }

    .theme-option-title {
      font-size: 12px;
      font-weight: 700;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 4px;
      margin-top: 4px;
    }
    .theme-option-card.selected .theme-option-title {
      color: var(--brand);
    }

    /* TEXT SIZE STEPPER (ACCESSIBILITY 3-STEPS) */
    .font-size-segmented {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 4px;
      background: var(--surface-raised);
      padding: 4px;
      border-radius: var(--radius-md);
      border: 1px solid var(--border);
    }
    .font-size-btn {
      min-height: 44px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2px;
      border-radius: var(--radius-sm);
      border: none;
      background: transparent;
      color: var(--text-muted);
      cursor: pointer;
      transition: var(--transition);
    }
    .font-size-btn:hover {
      color: var(--text);
    }
    .font-size-btn:focus-visible {
      outline: 2px solid var(--border-focus);
    }
    .font-size-btn.selected {
      background: var(--surface);
      color: var(--brand);
      font-weight: 700;
      box-shadow: var(--shadow-sm);
    }
    .font-size-sample {
      line-height: 1;
    }
    .font-size-label {
      font-size: 11px;
    }

    /* LANGUAGE SELECTOR RADIO LIST */
    .language-list {
      display: flex;
      flex-direction: column;
    }
    .language-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 16px;
      border-bottom: 1px solid var(--border);
      cursor: pointer;
      min-height: 48px;
      transition: var(--transition);
    }
    .language-row:last-child {
      border-bottom: none;
    }
    .language-row:hover {
      background: var(--surface-raised);
    }
    .language-row:focus-visible {
      outline: 2px solid var(--border-focus);
    }
    .lang-details {
      display: flex;
      flex-direction: column;
    }
    .lang-name {
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
    }
    .lang-sub {
      font-size: 11px;
      color: var(--text-subtle);
    }
    .radio-circle {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      border: 2px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
      flex-shrink: 0;
    }
    .language-row.selected .radio-circle,
    .radio-circle.checked {
      border-color: var(--brand);
      background: var(--brand);
    }
    .radio-inner-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #FFFFFF;
    }

    /* ONE-LINE CALLOUT BANNER */
    .exam-rule-banner {
      background: var(--surface-raised);
      border-left: 3px solid var(--brand);
      padding: 8px 12px;
      font-size: 12px;
      color: var(--text-muted);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      line-height: 1.4;
    }

    /* TOGGLE SWITCH COMPONENT */
    .switch-wrapper {
      display: inline-flex;
      align-items: center;
      min-height: 44px;
      min-width: 44px;
    }
    .toggle-switch {
      width: 48px;
      height: 28px;
      background: var(--border);
      border-radius: var(--radius-pill);
      padding: 2px;
      cursor: pointer;
      transition: var(--transition);
      position: relative;
      border: none;
      display: flex;
      align-items: center;
    }
    .toggle-switch:focus-visible {
      outline: 2px solid var(--border-focus);
      outline-offset: 2px;
    }
    .toggle-switch.active {
      background: var(--brand);
    }
    .toggle-knob {
      width: 24px;
      height: 24px;
      background: #FFFFFF;
      border-radius: 50%;
      box-shadow: 0 1px 3px rgba(0,0,0,0.25);
      transition: var(--transition);
      transform: translateX(0);
    }
    .toggle-switch.active .toggle-knob {
      transform: translateX(20px);
    }

    /* SESSION LENGTH SEGMENTED */
    .segmented-session {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 4px;
      background: var(--surface-raised);
      padding: 4px;
      border-radius: var(--radius-md);
      border: 1px solid var(--border);
    }
    .session-len-btn {
      min-height: 44px;
      border: none;
      background: transparent;
      color: var(--text-muted);
      border-radius: var(--radius-sm);
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
    }
    .session-len-btn:hover {
      color: var(--text);
    }
    .session-len-btn:focus-visible {
      outline: 2px solid var(--border-focus);
    }
    .session-len-btn.selected {
      background: var(--surface);
      color: var(--brand);
      box-shadow: var(--shadow-sm);
    }

    /* DATE INPUT STYLING */
    .date-input-row {
      display: flex;
      gap: 8px;
      align-items: center;
    }
    .date-field {
      flex: 1;
      height: 44px;
      background: var(--surface-raised);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 0 12px;
      font-family: var(--font-body);
      font-size: 13px;
      color: var(--text);
      font-weight: 500;
    }
    .date-field:focus {
      outline: 2px solid var(--border-focus);
      background: var(--surface);
    }
    .btn-save-sm {
      height: 44px;
      padding: 0 14px;
      background: var(--surface-raised);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      color: var(--text);
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
    }
    .btn-save-sm:hover {
      background: var(--surface);
      border-color: var(--brand);
      color: var(--brand);
    }

    /* DEVICE LISTING IN SETTINGS */
    .device-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 14px;
      background: var(--surface-raised);
      border-radius: var(--radius-sm);
      border: 1px solid var(--border);
      gap: 12px;
    }
    .device-meta {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .device-icon-box {
      width: 32px;
      height: 32px;
      border-radius: 6px;
      background: var(--surface);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
    }
    .device-name {
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
    }
    .device-tag {
      font-size: 11px;
      color: var(--text-subtle);
    }

    /* DESTRUCTIVE ACTIONS SECTION */
    .destructive-box {
      margin-top: 12px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding-top: 8px;
    }

    .btn-destructive-outline {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: transparent;
      border: 1px solid var(--danger);
      color: var(--danger);
      border-radius: var(--radius-md);
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      padding: 0 16px;
    }
    .btn-destructive-outline:hover {
      background: var(--danger-surface);
    }
    .btn-destructive-outline:focus-visible {
      outline: 2px solid var(--danger);
      outline-offset: 2px;
    }

    .btn-destructive-solid {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: var(--danger);
      border: 1px solid var(--danger);
      color: #FFFFFF;
      border-radius: var(--radius-md);
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      padding: 0 16px;
    }
    .btn-destructive-solid:hover {
      background: var(--danger-hover);
    }
    .btn-destructive-solid:focus-visible {
      outline: 2px solid var(--danger);
      outline-offset: 2px;
    }

    /* DELETE MODAL SIMULATION */
    .delete-confirm-card {
      background: var(--danger-surface);
      border: 1px solid rgba(192, 45, 45, 0.3);
      border-radius: var(--radius-md);
      padding: 14px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .delete-warning-title {
      font-size: 13px;
      font-weight: 700;
      color: var(--danger);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .delete-loss-list {
      font-size: 12px;
      color: var(--text);
      line-height: 1.4;
      padding-left: 18px;
    }

    /* SAVING & OFFLINE TOAST / NOTIFICATION */
    .system-status-toast {
      padding: 8px 12px;
      border-radius: var(--radius-sm);
      font-size: 12px;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .toast-saving {
      background: var(--brand-surface);
      color: var(--brand);
      border: 1px solid rgba(24, 90, 219, 0.2);
    }
    .toast-error {
      background: var(--danger-surface);
      color: var(--danger);
      border: 1px solid rgba(192, 45, 45, 0.2);
    }
    .toast-offline {
      background: var(--warning-surface);
      color: var(--warning);
      border: 1px solid rgba(179, 94, 20, 0.25);
    }

    /* PHONE BOTTOM TAB BAR */
    .phone-tab-bar {
      height: 64px;
      background: var(--surface);
      border-top: 1px solid var(--border);
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      flex-shrink: 0;
      position: sticky;
      bottom: 0;
      z-index: 20;
    }
    .phone-tab-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 3px;
      color: var(--text-muted);
      text-decoration: none;
      font-size: 10px;
      font-weight: 600;
      min-height: 44px;
    }
    .phone-tab-item.active {
      color: var(--brand);
    }

    /* 2. DESKTOP 1280PX TWO-COLUMN LAYOUT */
    .desktop-showcase-box {
      width: 100%;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      background: var(--surface);
      box-shadow: var(--shadow-md);
      overflow: hidden;
      margin-bottom: 40px;
    }

    .desktop-browser-header {
      background: var(--surface-raised);
      border-bottom: 1px solid var(--border);
      padding: 10px 16px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .browser-dots {
      display: flex;
      gap: 6px;
    }
    .browser-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--border);
    }

    .browser-url-bar {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-pill);
      padding: 4px 14px;
      font-size: 12px;
      color: var(--text-muted);
      width: 440px;
      font-family: monospace;
    }

    .desktop-body-grid {
      display: grid;
      grid-template-columns: 240px 1fr;
      min-height: 820px;
    }

    /* DESKTOP APP SHELL SIDEBAR */
    .desktop-sidebar {
      background: var(--surface-raised);
      border-right: 1px solid var(--border);
      padding: 24px 16px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .sidebar-top {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .sidebar-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
    }
    .sidebar-logo-badge {
      width: 28px;
      height: 28px;
      border-radius: 6px;
      background: var(--brand);
      color: #FFF;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 800;
    }

    .sidebar-nav {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .sidebar-nav-link {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      border-radius: var(--radius-md);
      color: var(--text-muted);
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
      min-height: 44px;
      transition: var(--transition);
    }
    .sidebar-nav-link:hover {
      background: var(--surface);
      color: var(--text);
    }
    .sidebar-nav-link.active {
      background: var(--surface);
      color: var(--brand);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
    }

    .sidebar-user {
      padding: 12px;
      border-radius: var(--radius-md);
      background: var(--surface);
      border: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    /* DESKTOP MAIN CONTENT WITH 2-COLUMN SETTINGS */
    .desktop-main-content {
      padding: 36px 44px;
      background: var(--bg);
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .desktop-header-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      border-bottom: 1px solid var(--border);
      padding-bottom: 20px;
    }

    .desktop-title-block h1 {
      font-family: var(--font-serif);
      font-size: 28px;
      font-weight: 600;
      color: var(--text);
    }
    .desktop-title-block p {
      font-size: 14px;
      color: var(--text-muted);
      margin-top: 4px;
    }

    /* 2-COLUMN SETTINGS SPLIT (Group List Left, Form Right) */
    .desktop-settings-split {
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 36px;
      align-items: start;
    }

    .group-nav-sticky {
      position: sticky;
      top: 24px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .group-nav-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 14px;
      border-radius: var(--radius-md);
      color: var(--text-muted);
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      transition: var(--transition);
      min-height: 44px;
      border: 1px solid transparent;
    }
    .group-nav-item:hover {
      background: var(--surface-raised);
      color: var(--text);
    }
    .group-nav-item.active {
      background: var(--surface);
      border-color: var(--border);
      color: var(--brand);
      box-shadow: var(--shadow-sm);
    }
    .group-nav-item.danger-link {
      color: var(--danger);
    }
    .group-nav-item.danger-link:hover {
      background: var(--danger-surface);
    }

    .settings-panes-column {
      display: flex;
      flex-direction: column;
      gap: 32px;
      max-width: 760px;
    }

    /* AUDIT & COMPLIANCE TABLE */
    .audit-table-wrap {
      width: 100%;
      overflow-x: auto;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      background: var(--surface);
      margin-top: 12px;
    }
    .audit-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 13px;
      text-align: left;
    }
    .audit-table th {
      background: var(--surface-raised);
      padding: 10px 14px;
      font-weight: 700;
      color: var(--text-muted);
      border-bottom: 1px solid var(--border);
      text-transform: uppercase;
      font-size: 11px;
      letter-spacing: 0.05em;
    }
    .audit-table td {
      padding: 12px 14px;
      border-bottom: 1px solid var(--border);
      color: var(--text);
      vertical-align: top;
    }
    .audit-table tr:last-child td {
      border-bottom: none;
    }

    /* SVG ICONS INLINE */
    .icon-16 {
      width: 16px;
      height: 16px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .icon-20 {
      width: 20px;
      height: 20px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
  