Offline Notepad View raw

Shared snapshot

Ebb

.notes-box {
  background: var(--note-bg);
  border: var(--border-w) solid var(--note-border);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 20px;
  color: var(--note-text);
  line-height: 1.7;
}
.notes-box h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.notes-box h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 10px 0 6px;
}
.notes-box p { margin: 0 0 8px; font-size: 14px; }
.notes-box ul { padding-left: 22px; margin: 0; }
.notes-box li { margin-bottom: 5px; font-size: 14px; }
.notes-box strong { font-weight: 600; }

.table-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--title-row-bg);
  border: var(--border-w-thick) solid var(--accent-green);
  border-bottom: none;
  border-radius: 14px 14px 0 0;
  padding: 0 16px;
  height: var(--nav-height);
}
.nav-btn {
  background: #fff;
  color: var(--accent-green);
  border: 2px solid var(--accent-green);
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  min-width: 110px;
}
.nav-btn:hover { background: var(--accent-green); color: #fff; }
.nav-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.table-title-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  height: 100%;
}
.table-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-green);
  text-align: center;
}
.table-indicator {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-green);
  opacity: 0.8;
}

.table-wrapper { display: none; }
.table-wrapper.active { display: block; }

.table-container {
  border: var(--border-w-thick) solid var(--accent-green);
  border-top: none;
  border-radius: 0 0 14px 14px;
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
colgroup col:nth-child(1) { width: var(--col-36); }
colgroup col:nth-child(2) { width: var(--col-37); }
colgroup col:nth-child(3) { width: var(--col-35); }
colgroup col:nth-child(4) { width: var(--col-qs); }
colgroup col:nth-child(5) { width: var(--col-manned); }

th, td {
  border: var(--border-w) solid var(--accent-green);
  padding: 6px;
  text-align: center;
  vertical-align: middle;
}

.main-header th {
  background: var(--accent-green-soft);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-green);
  border-bottom: var(--border-w) solid var(--accent-green);
}
.sub-header th {
  background: #f0fdf4;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-green);
  border-bottom: var(--border-w) solid var(--accent-green);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--PILL-WIDTH);
  height: var(--PILL-HEIGHT);
  background: var(--PILL-BG);
  color: var(--PILL-COLOR);
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  margin: 2px;
  border: none;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.15s;
  white-space: nowrap;
}
.pill:hover { transform: scale(1.03); }

.social-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin: 4px 0;
}
.social-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--PILL-COLOR);
}
.social-num {
  width: var(--PILL-WIDTH);
  height: var(--PILL-HEIGHT);
  background: var(--PILL-BG);
  color: var(--PILL-COLOR);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.15s;
  border: none;
}
.social-num:hover { transform: scale(1.03); }

.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #0f172a;
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transition: all 0.3s;
  z-index: 100;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

`; document.head.appendChild(s); })();

<h4>Steps for Cleansing:</h4>
<ul>
  <li><strong>@CM (F2):</strong> Type <kbd>CS</kbd>, enter selection type <kbd>1</kbd>, then use reason code <kbd>ZZ</kbd></li>
  <li><strong>Next screen (36):</strong> Remove all TV service codes</li>
  <li><strong>Next screen (37):</strong> Remove all discount codes</li>
  <li><strong>Next screen (38):</strong> Remove all landline service codes</li>
  <li><strong>Final screen:</strong> Type <kbd>CP</kbd> to confirm and complete</li>
</ul>

document.addEventListener('click', e => { if (e.target.classList.contains('pill') || e.target.classList.contains('social-num')) { const val = e.target.dataset.copy; navigator.clipboard.writeText(val); showToast(val); } });

const wrappers = document.querySelectorAll('.table-wrapper'); let currentIndex = 2; // start on Table 3 for measurement const total = wrappers.length;

function updateState() { wrappers.forEach((wrap, i) => { wrap.classList.toggle('active', i === currentIndex); const prevBtn = wrap.querySelector('.prev-btn'); const nextBtn = wrap.querySelector('.next-btn'); prevBtn.disabled = currentIndex === 0; nextBtn.disabled = currentIndex === total - 1; }); }

document.addEventListener('click', e => { if (e.target.classList.contains('prev-btn') && currentIndex > 0) { currentIndex--; updateState(); } if (e.target.classList.contains('next-btn') && currentIndex < total - 1) { currentIndex++; updateState(); } });

// ✅ ALL rows = EXACT HEIGHT of Table 3 Row 2 — PERFECT SYNC function lockAllRowsToSameHeight() { const masterRow = document.getElementById('master-row'); const allRows = document.querySelectorAll('.data-row');

const targetRowHeight = masterRow.offsetHeight;

allRows.forEach(row => {
  row.style.height = targetRowHeight + 'px';
  row.style.minHeight = targetRowHeight + 'px';
});

// Now show Table 1 first
currentIndex = 0;
updateState();

}

setTimeout(lockAllRowsToSameHeight, 80);

updateState(); })();