@media all {

c\:r {color: red; }   /* Red   */
c\:n {color: blue; }   /* Navy Blue   */
c\:o {color: orange; }   /* Orange   */

}

:root {
  --fg: #000000; 
  --muted: #666; 
  --line: #ddd; 
  --paper: #fff; 
  /* This is the faint yellowish color from your previous file */
  --alt: #f6f6f0; 
  --accent: #0077cc; 
  --warn: #cc7a00;
}

body {
  background:#f7f7f7;
  color:var(--fg);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 700;
  line-height:1.55;
}



.table-container {
  width: 100%;
  overflow-x: auto;
  /* Add a fixed height if you want it to scroll vertically as well */
  max-height: 80vh; 
  overflow-y: auto;
}



table.db {
  width: max-content; /* Table will be exactly as wide as its columns require */
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid #444;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}


table.db thead th {
  position: -webkit-sticky; /* For Safari support */
  position: sticky;
  top: 0;
  z-index: 1;
  background: linear-gradient(to bottom, #3a3a3a 0%, #1f1f1f 100%);
  background-color: var(--paper); /* Ensures the header isn't transparent */
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 12px 10px;
  border: 1px solid #777;
  text-align: center;
  vertical-align: middle;
  border-bottom: 2px solid #000;
}



.legend {
  margin-top: 20px;
  padding: 10px;
  border-top: 1px solid #ccc;
}

.legend-item {
  display: flex;
  align-items: center; /* This keeps the symbol and text vertically aligned */
  gap: 15px;           /* Adds space between the symbol and the word */
}

.star-symbol {
  /* Reuse the layout logic from your header */
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.4;
  font-size: 16px;
}

.legend-text {
  font-weight: 600;
  font-size: 1.1em;
}




.header-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 0.3; /* Adjust this to tighten/loosen the gap */
  padding: 5px 0;
  margin-top: 7px; 
  padding-bottom: 0px;
}

.h-star {
  font-weight: 600;
}


table.db td {
  padding: 3px 6px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  font-weight: 700;
}

table.db tbody tr:nth-child(even) { 
  background-color: var(--alt); 
}

b {font-weight: 700; color:blue}
strong {font-weight: 700; color:blue}


table.db td:nth-child(1) {
  text-align: center;
}


table.db td:nth-child(2) {
  white-space: nowrap;
  text-align: left;
}

table.db td:nth-child(3) {
  text-align: center;
}

table.db td:nth-child(4) {
  text-align: center;
}

table.db td:nth-child(7) {
  text-align: center;
}


table.db td:nth-child(9) {
  text-align: center;
}

table.db th:nth-child(10) {
  text-align: left;
}


table.db tbody tr:hover { 
  background: #f0f7ff; 
  box-shadow: inset 0 0 0 9999px rgba(0,119,204,.05); 
}



