
/* Estilo geral da tabela de informações */
.auction-software-form table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  font-size: 1rem;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 0 1px #e5e5e5;
}

/* Zebra stripes */
.auction-software-form table tr:nth-child(even) {
  background-color: #f9f9f9;
}
.auction-software-form table tr:nth-child(odd) {
  background-color: #ffffff;
}

/* Células da tabela */
.auction-software-form table td {
  padding: 1rem;
  vertical-align: middle;
  border-bottom: 1px solid #eee;
}

/* Labels à esquerda */
.auction-software-form table td label {
  font-weight: 600;
  color: #333;
  font-size: 1rem;
}

/* Coluna de valores */
.auction-software-form table td.title {
  font-weight: bold;
  text-align: right;
  color: #111;
}

/* Remover borda da última linha */
.auction-software-form table tr:last-child td {
  border-bottom: none;
}

/* Responsividade básica */
@media (max-width: 768px) {
  .auction-software-form table td {
    display: block;
    text-align: left !important;
    padding: 0.75rem;
  }

  .auction-software-form table tr {
    display: block;
    margin-bottom: 1rem;
  }
}
