  h1 {
    font-size: 1.1em;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: #FFFFFF;
    margin: unset;
	padding: 5px;
  }
  
/* RUBRIEKEN */
  h2 {
    font-size: 1.1em;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-weight: bold;
    background-color: var(--colorBG_B);
    color: var(--colorFG_B);
	padding: 5px 0px 5px 5px;
	width: 100%;
  }  

/* LINKER KOLOM */
  h3 {
    font-size: 1.0em;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: #0000FF;
    margin: 0px;
	font-weight: bold;
  }

/* Bepaald o.a. de breedte van de site  */
body {
  font-family: Poppins, Verdana, Arial, sans-serif;
  font-size: 15px;
  width: 1050px;
  margin: 0 auto;
  background-color: #eee;
  border: 1px solid #555;
}

.website-container {
    display: flex;  /* Plaatst de menu en body naast elkaar */
    max-width: 1050px;  /* Max breedte van de hele container */
    width: 100%;  /* Zorgt dat het menu en body samen de breedte 100% vullen */
    margin: 0 auto;  /* Centreert de container */
    min-height: 90vh;  /* Zorgt ervoor dat de container altijd ten minste de hoogte van het scherm is */
	border-top: 1px solid #555;
	border-bottom: 1px solid #555;
	background: white;
}

main {
	width: 100%;
}

table td {
	vertical-align: top
}

table td h3 {
    font-family: Verdana, Arial, sans-serif;
    font-weight: normal;
}

/* Specifieke stijl voor de linker kolom */
table td:nth-child(odd) h3 {
    font-family: Verdana, Arial, sans-serif;
    font-weight: bold;	
}

.wrapper {
	display: flex;
}

.pulldown-menu {
    width: 250px;
}

.mededeling {
    border: 4px solid red; 
    font-size: 1.2em; 
    text-align: center; 
    display: flex;
    align-items: center; 
    justify-content: center;
    padding: 5px 0; 
	margin-top: 10px;
	margin-bottom: 10px;
}

link a {
    color: #0066cc;        
    text-decoration: none; 
}

label a:hover {
	color: #eee;
	transition: transform 0.3s ease;
}

strong {
	color: #1f65b5;
	text-decoration: none;
}

strong:hover {
	text-decoration: underline;
	color: blue;
	transition: color 0.5s ease-in-out;
}

.bold-blue {
	font-weight: bold;
	color: blue;
}

.image_over {
    opacity: 0.5;
    filter: alpha(opacity=50);
  }

  .image_dicht {
    opacity: 1.0;
    filter: alpha(opacity=100);
  }

.styled-table {
    width: 100%;
    border-collapse: collapse;
    border-left: 1px solid #0000FF;
    border-right: 1px solid #0000FF;
	border-spacing: 2px;
}

.styled-table td:first-child {
    width: 25%;
    font-family: Verdana, Arial, sans-serif;
}

.styled-table-no-border {
    width: 100%;
    border-collapse: collapse;
    border: none;
	border-spacing: 2px;
}

.right-aligned {
    text-align: right;
	background-color: #0000FF;
}

.aligned-center {
	text-align: center;
}

.titel {
    display: flex;
    align-items: center;
    width: 100%;
	background-color: #0000FF;
}

.selectie {
    display: flex;
    width: 100%;
	margin: 0px;
}

/* RESPONSIVE INSTELLINGEN */

/* Standaardstijl voor brede schermen */
.styled-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #0000FF;
}

/* Geef een vaste breedte aan de rechter kolom */
.right-column {
    width: 250px; /* Of welke breedte je ook wilt voor de rechter kolom */
}

/* Laat de linker kolom de beschikbare ruimte vullen */
.left-column {
    width: 100%; /* Neem de resterende breedte in beslag */
}

.producten, .usp {
	padding: 0 10px 10px 10px;
}

/* Wordt gebruikt bij het open of dicht klappen van een sectie (zie veelgestelde vragen) */
.pijl-omlaag {
	display: inline-block;
	transform: rotate(0deg);
	transition: transform 0.3s ease;
}

.pijl-omhoog {
	display: inline-block;
	transform: rotate(180deg);
	transition: transform 0.3s ease;
}

.foutmelding {
    font-size: 1em;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: white;
    background-color: red;
    padding: 5px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

/* Foutmeldingen weergeven */
.popup.error {
	background-color: white;
  width: 25rem;
  height: 10rem;
  margin: auto;
  position: fixed; /* Positie instellen op fixed */
  top: 50%; /* Plaats de bovenrand van de popup in het midden van het scherm */
  left: 50%; /* Plaats de linker rand van de popup in het midden van het scherm */
  transform: translate(-50%, -50%); /* Centreer de popup */
  box-shadow: 2px 2px 1rem #212121;
  border-radius: 0.25rem;
  z-index: 9999; /* Zorg ervoor dat de popup boven andere elementen verschijnt */
}
.popup.error .message {
  background-color: #e74c3c;
  height: 7rem;
  border-radius: 0.25rem 0.25rem 0 0;
  overflow: hidden;
  position: relative;
  font-size: 0.9rem;
}
.popup.error .message:before {
  content: "\f057";
  font-family: FontAwesome;
  position: absolute;
  color: #fafafa;
  font-size: 10rem;
  opacity: 0.3;
  top: -2.5rem;
  right: -0.5rem;
}
.popup.error .message p {
  padding: 0.5rem;
  color: #fafafa;
}
.popup.error .action {
  height: 3rem;
  line-height: 3rem;
  width: 100%;
  position: relative;
}
.popup.error .action button {
  position: absolute;
  right: 1rem;
  top: 0.8rem;
  outline: none;
  border: 0;
  background-color: #e74c3c;
  width: 5rem;
  height: 1.5rem;
  color: #fafafa;
  text-transform: uppercase;
  transition: background-color 0.2s ease-in-out;
  border-radius: 0.25rem;
}
.popup.error .action button:active {
  background-color: #c0392b;
}

/* Normale meldingen weergeven */
.popup.success {
  background-color: white;
  width: 25rem;
  height: 10rem;
  margin: auto;
  position: fixed; /* Positie instellen op fixed */
  top: 50%; /* Plaats de bovenrand van de popup in het midden van het scherm */
  left: 50%; /* Plaats de linker rand van de popup in het midden van het scherm */
  transform: translate(-50%, -50%); /* Centreer de popup */
  box-shadow: 2px 2px 1rem #212121;
  border-radius: 0.25rem;
  z-index: 9999; /* Zorg ervoor dat de popup boven andere elementen verschijnt */
}

.popup.success .message {
  background-color: #2ecc71; /* Groene achtergrondkleur */
  height: 7rem;
  border-radius: 0.25rem 0.25rem 0 0;
  overflow: hidden;
  position: relative;
  font-size: 0.9rem;
}

.popup.success .message:before {
  content: "\f058"; /* Groen vinkje */
  font-family: FontAwesome;
  position: absolute;
  color: #fafafa;
  font-size: 10rem;
  opacity: 0.3;
  top: -2.5rem;
  right: -0.5rem;
}

.popup.success .message p {
  padding: 0.5rem;
  color: #fafafa;
}

.popup.success .action {
  height: 3rem;
  line-height: 3rem;
  width: 100%;
  position: relative;
}

.popup.success .action button {
  position: absolute;
  right: 1rem;
  top: 0.8rem;
  outline: none;
  border: 0;
  background-color: #2ecc71; /* Groene achtergrondkleur */
  width: 5rem;
  height: 1.5rem;
  color: #fafafa;
  text-transform: uppercase;
  transition: background-color 0.2s ease-in-out;
  border-radius: 0.25rem;
}

.popup.success .action button:active {
  background-color: #27ae60; 
}

/* Popup voor vraag met ja/nee knoppen */
.popup.question {
  background-color: white;
  width: 25rem;
  height: 12rem;
  margin: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 2px 2px 1rem #212121;
  border-radius: 0.25rem;
  z-index: 9999;
}

.popup.question .message {
  background-color: #f39c12; /* Oranje achtergrondkleur */
  height: 7rem;
  border-radius: 0.25rem 0.25rem 0 0;
  overflow: hidden;
  position: relative;
  font-size: 0.9rem;
}

.popup.question .message:before {
  content: "\f128"; /* Vraagteken symbool */
  font-family: FontAwesome;
  position: absolute;
  color: #fafafa;
  font-size: 10rem;
  opacity: 0.3;
  top: -2.5rem;
  right: -0.5rem;
}

.popup.question .message p {
  padding: 0.5rem;
  color: #fafafa;
}

.popup.question .action {
  height: 3rem;
  width: 100%;
  position: relative;
}

.popup.question .action button {
  position: absolute;
  outline: none;
  border: 0;
  width: 5rem;
  height: 1.5rem;
  color: #fafafa;
  text-transform: uppercase;
  transition: background-color 0.2s ease-in-out;
  border-radius: 0.25rem;
}

.popup.question .action button.yes {
  background-color: #27ae60; /* Groene achtergrondkleur */
  left: 1rem;
}

.popup.question .action button.no {
  background-color: #c0392b; /* Rode achtergrondkleur */
  right: 1rem;
}

.popup.question .action button:active {
  opacity: 0.8; /* Verminder de opaciteit bij het activeren */
}

/* Verstuur aanvraag button */
.button {
  margin: 10px;
  padding: 10px 15px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  border-radius: 10px;
  display: block;
  border: 0px;
  font-weight: 700;
  /* box-shadow: 0px 0px 14px -7px #4CAF50;  */
  /* background-image: linear-gradient(45deg, #5194E1 0%, #1f65b5 51%, #5194E1 100%);  */
  cursor: pointer;
  user-select: none;
  /* touch-action: manipulation; */
  -webkit-user-select: none;
}

.button:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
}

.button:active {
  transform: scale(0.95);
}


.rood {
	color : #ff0000;
}

.geel {
	color: #FFD43B;
}

.donkergroen {
	color: #39793D;
}

.lichtgroen {
	color: #00ff11;
}

.donkergeel {
	color: #b78609;
}

.search-wrapper {
  position: relative;
  display: inline-block;
}

.search-wrapper input {
  padding-left: 40px; /* ruimte maken voor het icoon */
  height: 36px;       /* voorbeeld hoogte */
  border-radius: 8px; /* ronde hoeken */
  border: 1px solid #ccc;
  font-size: 16px;
}

.search-wrapper .search-icon {
  position: absolute;
  left: 8px;          /* afstand van de linkerkant */
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none; /* zodat klikken op het icoon toch het inputveld activeert */
  font-size: 18px;     /* grootte van het icoon */
  color: #666;
}

.zoek-button {
  position: absolute;  
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.invoerveld {
    align-items: center;
    margin-right: 5px; 
	font-size: var(--product_zoeken_font_size);
	width: 150px;
}

/* Einde CSS code product zoeken */
/* Winkelmandje aantallen (wat getoond wordt bovenaan het scherm) */
.mandje {
	display: flex;
	position: absolute;
	width: 50px;
	height: 50px;
	justify-content: center;
	align-items: center;
	top: var( --winkelwagen_positie_top);
	left: var(--winkelwagen_positie_left);
}

.winkelmandje, .winkelmandje_aantal{
	display: flex;
	position: relative;
	color: grey;
	font-size: 3em;
	opacity: 0.7;
}

.winkelmandje_aantal{
	display: flex;
	position: absolute;	
	color: white;
	font-size: 2.3em;
	font-weight: bold;
	opacity: 1;
}
/* EINDE Winkelmandje */



/* Responsieve stijl voor afbeeldingen op kleinere schermen */
@media screen and (max-width: 768px) {
	.container, body, html {
		min-width: 400px;
	}
	  
	body {
	  font-family: Verdana, Arial, sans-serif;
	  font-size: 15px;
	  width: 100%;
	  margin: 0 auto;
	}
}