/* ===============================
   Bids Component – clean scroll
   =============================== */
.bid-columns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(20,20,20,0.9);
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(118,255,3,0.25);
  text-align: center;
}

/* Titels */
.place-bid-title {
  color: #76ff03;
  font-size: 1.2rem;
  font-weight: bold;
  /* text-shadow verwijderd */
}

/* Biedgeschiedenis */
.bid-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-height: 200px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #76ff03 #111;
  width: 100%;
}

.bid-list li {
  padding: 8px;
  color: #d0ffb6;
  font-size: 0.95rem;
  background: #1a1a1a;
  border-radius: 8px;
  margin-bottom: 8px;
}

/* Formulier */
.bid-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  align-items: center;
}

.bid-form input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: #000;
  color: #76ff03;
  text-align: center;
  box-shadow: inset 0 0 6px rgba(118,255,3,0.3);
}

.bid-form input:focus {
  outline: none;
  box-shadow: 0 0 8px #76ff03;
}

/* Knoppen */
.bid-form button,
.back-button {
  width: 100%;
  padding: 12px;
  font-weight: bold;
  background: #000;
  color: #76ff03;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bid-form button:hover,
.back-button:hover {
  background: #76ff03;
  color: #000;
}
body{
  overflow: scroll;
}
.bid-highest {
    color: lime;
    font-weight: bold;
}

.bid-lower {
    color: red;
}
