.bord{
  background-color: white;
  border: 1px solid lightgray;
  border-radius: 10px;

  height: 300px;
  max-width: 600px;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.vakje{
  background-color: white;
  border: 1px solid lightgray;
  border-radius: 10px;

  /* Flexbox voor de pion-visualisatie */
  display: grid;
  justify-content: center;
  align-items: center;

  width: 50px;
  height: 50px;
  margin: 0 auto; /* Precies in het midden */

  margin: 2px;

  text-align: center;
  font-size: 20px;
  line-height: 60px;
  position: relative;
}

.pionrood{
  width: 40px;
  height: 40px;
  line-height: 40px;

  background-color: #FF999C;
  border: solid 1px red;
  border-radius: 40px;

  margin: 1px auto;
}

.piongeel{
  width: 40px;
  height: 40px;
  line-height: 40px;

  background-color: lightyellow;
  border: solid 1px yellow;
  border-radius: 40px;

  margin: 1px auto;
}

.piongroen{
  width: 40px;
  height: 40px;
  line-height: 40px;

  background-color: lightgreen;
  border: solid 1px green;
  border-radius: 40px;

  margin: 1px auto;
}

.pionblauw{
  width: 40px;
  height: 40px;
  line-height: 40px;

  background-color: lightblue;
  border: solid 1px blue;
  border-radius: 40px;

  margin: 1px auto;
}

.buttonHolder {
  border: solid 1px lightgrey;
  border-radius: 10px;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  
  align-items: center;
  width: 500px;
  height: 160px;

  margin-bottom: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.buttonRow{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

form{
  padding-left: 1%;
}

button{
  border-radius: 10px;
  background-color: lightblue;
  border: solid 1px blue;
  
  height: 50px;
  width: 150px;
}

.pionButton{
  border-radius: 10px;
  background-color: lightblue;
  height: 50px;
  width: 100px;  
}

header{
  border: solid 1px lightgrey;
  border-radius: 10px;
  padding: 10px;
  width: 1040px;

  text-align: center;

  margin: 0 auto; /*Precies in het midden van het scherm de hele tijd */
  margin-bottom: 20px;
}

.debugInfo{
  border: solid 1px lightgrey;
  border-radius: 10px;
  padding: 10px;
  width: 480px; /*Gebruikelijke 500px - 20px extra padding */
  margin-bottom: 20px;
}

.debugInfo h2{
  text-align: center;
}

.debugInfo p{
  text-align: center;
}

.debugInfo pre{
  text-align: left;
}

.startForm{
  border: solid 1px lightgrey;

  border-radius: 10px;
  width: 1024px;

  margin: 0 auto;

  margin-bottom: 20px;
  padding-bottom: 20px;

  text-align: center; 
}

.infoCard{
  border: solid 1px lightgrey;

  border-radius: 10px;
  width: 500px;

  margin-bottom: 20px;

  text-align: center;
}

.huizen{
  display: flex;
  flex-wrap: wrap;

  width: 250px;

  margin: 0 auto;
  margin-bottom: 20px;
}

.infoCard-dobbelsteen {
  border: solid 1px lightgrey;
  border-radius: 10px;
  width: 400px;
  height: 300px;
  text-align: center;
}


.infoCard-blauw{
  background-color: lightblue;
  
  border: solid 1px blue;

  border-radius: 10px;
  width: 500px;
  height: 100px;
  margin-bottom: 20px;

  text-align: center;
}

.infoCard-geel{
  background-color: lightyellow;
  
  border: solid 1px yellow;

  border-radius: 10px;
  width: 500px;
  height: 100px;
  margin-bottom: 20px;

  text-align: center;
}

.infoCard-groen{
  background-color: lightgreen;
  
  border: solid 1px green;

  border-radius: 10px;
  width: 500px;
  height: 100px;
  margin-bottom: 20px;

  text-align: center;
}

.infoCard-rood{
  background-color: #FF999C; /* Lichtrood is geen ding in CSS, dus maar een eigen kleur */
  
  border: solid 1px red;

  border-radius: 10px;
  width: 500px;
  height: 100px;
  margin-bottom: 20px;

  text-align: center;
}

.mainBody {
  display: flex;
  justify-content: center;
  flex-direction: row;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.topBody {
  display: flex;
  justify-content: center;
  flex-direction: row;
  width: 100%;
  max-width: 1200px;       
  margin: 0 auto;
  margin-bottom: 20px;
  gap: 20px;
}

.leftBody {
  width: 500px; /* PAS AAN: Was 30% */
}

.centerBody {
  width: 500px; /* PAS AAN: Was 30% */
}

.rightBody {
  width: 500px; /* PAS AAN: Was 30% */
}

.textForm{
  border: solid 1px lightgray;
  border-radius: 20px;
  height: 30px;
  text-align: center;
 
  margin-bottom: 20px;
}

body{
  font-family: Arial, Helvetica, sans-serif;
}

img{
  width: auto;
  height: 200px;
}