/* =======================
   Bid Page Styling – smooth & clean
   ======================= */
body {
  background: #000;
  color: #76ff03;
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  padding: 0;
  overflow: hidden; /* Body zelf niet scrolbaar */
}

.bid-page {
  max-width: 900px;
  margin: 140px auto 60px;
  padding: 20px;
  background: #1a1a1a;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(118, 255, 3, 0.25);
  display: flex;
  flex-direction: column;
  gap: 30px; /* iets meer ruimte tussen secties */
  
}

/* Titels */
.bid-page h2 {
  font-size: 2em;
  text-align: center;
  color: #76ff03;
  margin: 0;
  text-shadow: 0 0 10px rgba(118,255,3,0.6);
}

.bid-page h3,
.bid-page h4 {
  margin: 0 0 15px 0;
  font-weight: bold;
  font-size: 1.2em;
  color: #76ff03;
}

/* Prijs */
.price {
  font-size: 1.3em;
  text-align: center;
  margin-bottom: 10px;
  color: #fff;
}

/* Bid list */
.bid-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  max-width: 100%;
  overflow-x: hidden;
}

.bid-list li {
  padding: 12px 16px;
  margin-bottom: 10px;
  background: #222;
  border-radius: 8px;
  color: #eee;
  font-size: 0.95em;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-x: hidden;
  max-width: 100%;
}

.bid-list li:hover {
  background: #333;
  transform: translateX(2px);
}

/* Nieuw bod formulier */
.bid-form-wrapper {
  padding: 25px 20px;
  background: #1a1a1a;
  border-radius: 12px;
  /* box-shadow weggehaald → geen groene gloed meer */
}

.bid-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.bid-form input[type="number"] {
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: #111;
  color: #fff;
  font-size: 1em;
  text-align: center;
  box-shadow: 0 0 6px rgba(118,255,3,0.3);
  transition: box-shadow 0.3s ease;
}

.bid-form input[type="number"]:focus {
  box-shadow: 0 0 10px rgba(118, 255, 3, 0.5);
  outline: none;
}

/* Submit button */
.bid-form button {
  padding: 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background: #76ff03;
  color: #000;
  font-weight: bold;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.2s ease;
}

.bid-form button:hover {
  background: #b2ff59;
  transform: scale(1.05);
}

/* Terugknop */
.back-button {
  text-align: center;
  display: inline-block;
  margin: 10px auto 0;
  padding: 10px 20px;
  border-radius: 8px;
  background: transparent;
  color: #76ff03;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.back-button:hover {
  background: #76ff03;
  color: #000;
}
