img#boot-thumbnail{
    max-width: 100px;
    height: auto;
    margin-bottom: 20px;
}

/* Opmaak voor de tijdlijn */
#tijdlijn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 30px;
    /* border: 1px solid #ccc; */
    margin-top: 10px;
  }
/*   
  #tijdlijn span {
    flex-grow: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
  }
  
  #tijdlijn span.beschikbaar {
    background-color: green;
  }
  
  #tijdlijn span.niet-beschikbaar {
    background-color: red;
  } */
  #tijdlijn {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 20px auto;
    height: 100%;
}

#tijdlijn span {
    padding: 5px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    width: 100px;
    text-align: center;
    flex-basis: calc(100% / 4 - 5px); /* Pas dit aan om het aantal tijdlijn-elementen per rij te wijzigen */
}

.beschikbaar {
    background-color: #28a745;
}

.niet-beschikbaar {
    background-color: #dc3545;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}



/* form */
input, select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
button {
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}
.container {
  width: 80%;
  margin: auto;
  overflow: hidden;
}
img#boot-thumbnail {
  max-width: 100%;
  height: 200px;
}
img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  /* // width: 100%;
  // height: auto; */
  border-radius: 25px;
}

/* // boot-thumbnail */
.niet-beschikbaar {
  color: #999; 
  cursor: not-allowed; 
}
.inline {
  display: inline-block;
}





div[id$='_opties'] > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.quantity {
  display: flex;
  align-items: center;
}

.quantity button {
  margin: 0 5px;

}
.quantity input, .quantity button {
  width: 50px;
  height: 100%;
  margin: 0 1px;
  
}
.quantity input[type=number] {
    margin: 0;
    /* // padding 0; */
    border-radius: 5px;
}

.stap {
  padding: 10px;
  border: 1px solid #cccccc;
  margin: 5px;
  display: inline-block;
}

#stappen-indicator {
  display: flex;
  justify-content: space-between;
}

.stap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
  transition: background 0.3s;
  border: none;
  border-radius: 25px;
}

.stap .nummer {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #007BFF;
  color: #fff;
}

.stap .tekst {
  margin-top: 10px;
  
  text-align: center;
  /* // font-size: 14px; */
  
}

.stap.actief {
  background: #007BFF;
  color: #fff;
  /* // border-radius: 50px; */
}

.stap.actief .nummer {
  background: #fff;
  color: #007BFF;
}

input#volgende_stap {
  margin: 0 20px;
}

#boeking_formulier #datum {
  width: 100% !important;
}

input.reserveren {
  font-weight: 900;
  font-size: 1em;

}


label.prijs-extra {
  margin-left: auto;
  padding-right: 10px;
}

.stap.actief {
  box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
  transform: scale(1.1);
  background-color: #28a745;
  border: 2px solid #28a745;
  min-width: 150px;

}
.stap {
  transition: all 0.3s ease;
}

#stap3 .footnote {
  font-size: 0.8em;
  color: #888;
  padding-bottom: 10px;
}



#stap3 .footnote {
  font-size: 0.8em;
  color: #888;
  padding-bottom: 10px;
}
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
  margin-left: 10px;
}


.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
  bottom: 100%; /* Place the tooltip above the text */
  left: 50%;
  margin-left: -60px; /* Use half of the width (120/2 = 60), to center the tooltip */
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

/* Styling the info circle */
/* // .tooltip:before {
//     content: "\2139";
//     display: inline-block;
//     vertical-align: middle;
//     margin-right: .5rem;
//     font-size: 1.5rem;
//     color: #007bff;
//     border: solid 2px #007bff;
//     border-radius: 50%;
//     padding: .1rem .3rem;
//     transition: .3s;
// } */

.tooltip:hover:before {
  transform: scale(1.3);
}



.quantity input[type="number"]::-webkit-inner-spin-button,
.quantity input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity input[type="number"] {
    -moz-appearance: textfield;
}