/* Alerta de sucesso: estilo mais moderno, limpo e alinhado */
.auction-success {
  background-color: #e6f7ee !important;
  color: #1e6247 !important;
  padding: 1rem 1.25rem 1rem 3.5rem;
  border-left: 5px solid #28a745;
  border-top-color: #28a745 !important;
  position: relative;
  font-weight: 500;
  border-radius: 6px;
  margin: 1.5rem 0;
}

/* Ícone ou destaque visual na esquerda */
.auction-success::before {
  content: '✔';
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: #28a745;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Alerta de erro: forte contraste e estrutura limpa */
.auction-error {
  background-color: #fbeaea !important;
  color: #842029 !important;
  padding: 1rem 1.25rem 1rem 3.5rem;
  border-left: 5px solid #dc3545 !important;
  border-top-color: #dc3545 !important;
  position: relative;
  font-weight: 500;
  border-radius: 6px;
  margin: 1.5rem 0;
}

/* Ícone visual de erro */
.auction-error::before {
  content: '⚠';
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: #dc3545;
  font-weight: bold;
  font-size: 1.2rem;
}

#auction-bid-simple,
.auction-bid-simple {
  min-width: 205px;
}

.auction-price {
  border: 0;
}