body, html {
    background-color: black;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.centerTable { 
    margin: 0px auto;
    /* border: 1px solid white; */
}

.round {
    position: relative;
    /* font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; */
    color: antiquewhite;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    border-radius: 100px;
    background-color: yellowgreen;
    transition: background-color 0.5s ease;
    filter: drop-shadow(0px 0px 10px yellowgreen);
    backdrop-filter: blur(0); /* fix for the damn Safari browser to correctly display the dropshadow */
    margin: auto;
}

.round:hover {
    background-color: antiquewhite;
    filter: drop-shadow(0px 0px 30px antiquewhite);
    color:yellowgreen;
    cursor: pointer;
    /* transition:ease-in 0.5s; */
}

.tableHeader {
    padding: 50px;
}

.content {
    width: 250px;
    padding: 50px;
}




.overmij {
    width: 300px;
    margin-top: 40px;
    background-color: antiquewhite;
    padding: 10px 10px 10px 10px;
}

.captionovermij {
    position: relative;
    top: -10px;
    width: 300px;
    background-color: antiquewhite;
    color: gray;
    padding: 10px 10px 10px 10px;
    font-size: 12px;
    font-style: italic;
    margin-bottom: 40px;
}

.loswerk {
    width: 300px;
    margin-top: 40px;
    background-color: #2c3e50;
    padding: 10px 10px 10px 10px;
}

.captionloswerk {
    position: relative;
    top: -10px;
    width: 300px;
    background-color: #2c3e50;
    color: antiquewhite;
    padding: 10px 10px 10px 10px;
    font-size: 12px;
    font-style: italic;
    margin-bottom: 40px;
}

.natuur {
    width: 300px;
    margin-top: 40px;
    background-color: #2c3e50;
    padding: 10px 10px 10px 10px;
}

.captionnatuur {
    position: relative;
    top: -10px;
    width: 300px;
    background-color: #2c3e50;
    color: antiquewhite;
    padding: 10px 10px 10px 10px;
    font-size: 12px;
    font-style: italic;
    margin-bottom: 40px;
}



.mensen {
    width: 300px;
    margin-top: 40px;
    background-color: darkslategrey;
    padding: 10px 10px 10px 10px;
}

.captionmensen {
    position: relative;
    top: -10px;
    width: 300px;
    background-color:darkslategrey;
    color: burlywood;
    padding: 10px 10px 10px 10px;
    font-size: 12px;
    font-style: italic;
    margin-bottom: 40px;
}

/* 1. Verberg de radio buttons */
input[name="overlay-content"] {
  display: none;
}

/* 2. De Overlay basis (verborgen) */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  padding: 40px 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

.overlay-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  z-index: 1;
}

.overlay-content {
  position: relative;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  z-index: 2;
  margin: auto 0;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #888;
}

/* 3. VERBERG STANDAARD ALLE CONTENT BLOKKEN */
.content-block {
  display: none;
}

/* 4. DE MAGIE: Toon de overlay EN het juiste blok op basis van de gekozen radio button */
/* Als 1, 2 OF 3 is aangevinkt -> Open de overlay */
#trigger-content-1:checked ~ .overlay,
#trigger-content-2:checked ~ .overlay,
#trigger-content-3:checked ~ .overlay,
#trigger-content-4:checked ~ .overlay,
#trigger-content-5:checked ~ .overlay,
#trigger-content-6:checked ~ .overlay {
  opacity: 1;
  visibility: visible;
}

/* 2. ACHTERGRONDKLEUREN PER BLOK INSTELLEN */

/* BLOK 1: Donkerblauw venster met witte tekst */
#trigger-content-1:checked ~ .overlay .overlay-content {
  background-color: #2c3e50;
  color: #ffffff;
}
#trigger-content-1:checked ~ .overlay .content-1 {
  display: block;
}

/* BLOK 2: Zachtgroen venster met donkergroene tekst */
#trigger-content-2:checked ~ .overlay .overlay-content {
  background-color: #e8f8f5;
  color: #117a65;
}
#trigger-content-2:checked ~ .overlay .content-2 {
  display: block;
}

/* BLOK 3: Warm paars/lavendel venster */
#trigger-content-3:checked ~ .overlay .overlay-content {
  background-color: #f4ecf7;
  color: #5b2c6f;
}
#trigger-content-3:checked ~ .overlay .content-3 {
  display: block;
}

/* BLOK 4: Warm paars/lavendel venster */
#trigger-content-4:checked ~ .overlay .overlay-content {
  background-color: burlywood;
  color: #2c3e50;
}
#trigger-content-4:checked ~ .overlay .content-4 {
  display: block;
}

/* BLOK 5: Warm paars/lavendel venster */
#trigger-content-5:checked ~ .overlay .overlay-content {
  background-color: #f4ecf7;
  color: #5b2c6f;
}
#trigger-content-5:checked ~ .overlay .content-5 {
  display: block;
}

/* BLOK 6: Warm paars/lavendel venster */
#trigger-content-6:checked ~ .overlay .overlay-content {
  background-color: lightgoldenrodyellow;
  color: olive;
}
#trigger-content-6:checked ~ .overlay .content-6 {
  display: block;
}