
/* 1. Zebra stripes nas linhas da tabela */
#auction_history_table tr:nth-child(even) {
  background-color: #f9f9f9;
}
#auction_history_table tr:nth-child(odd) {
  background-color: #ffffff;
}

/* 2. Espaçamento e altura das linhas */
#auction_history_table td {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  height: 48px;
}

/* 3. Alinhamento das colunas */
#auction_history_table td,
#auction_history_table th {
  text-align: center;
  vertical-align: middle;
}

/* 4. Estilização do cabeçalho */
#auction_history_table_heading td {
  background-color: #333;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  padding: 1rem;
  font-size: 0.95rem;
}

/* 6. Responsividade básica com scroll horizontal */
@media (max-width: 768px) {
  #auction_history_table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
