/* Remove all borders from table and cells */
table, th, td {
    border: 0 !important;
    text-align: center !important;
    padding: 14px !important
  }
  
/* Add horizontal borders to cells */
td {
    border-top: 1px solid var(--border-color, #2b3444) !important;
    border-bottom: 1px solid var(--border-color, #2b3444) !important;
    color: var(--text-secondary, #b8c2d1) !important;
  }
  
 /* Style the table header */
th {
    background-color: var(--surface-color, #141a23) !important;
    color: var(--text-primary, #e6edf3) !important;
    border-bottom: 2px solid var(--border-color-strong, #3a465d) !important;
  }
  
/* Keep row colors subtle in dark mode */
tr {
    background-color: transparent !important;
  }

tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.02) !important;
}
