<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

html {
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}

body {
  flex-direction:column;
  display:flex;
  height:100vh;
}

div .merchant-table {
  overflow:scroll;
  flex-grow:1;
  width:100%;
	height:450px;
}

table {
  border-collapse: collapse;
  width:200%;
}

thead tr &gt; th {
  background:#b22a2e;
  position: sticky;
  padding:.5rem;
  z-index:2;
  top: 0;
}

thead tr &gt; :first-child {
  z-index:3;
  left:0;
  top:0;
}

td {
  text-align:center;
}

tbody tr &gt; :first-child {
  background:#858585;
  position: sticky;
  z-index:1;
  left:0;
}
table a{color:#fff !important;text-decoration: underline !important;}
table a:hover{color:#fff !important;text-decoration: none !important;}</pre></body></html>