:root {
    --blauw: #4368E3;
}
.onzichtbaar {
    display: none !important;
}
  

body {
    margin: 0px;
    background-color: #f6f6f6;
}
/*
body > * {
    background-color: white;
}*/


.dt-container > div > div > div > select {
    margin-right: 7px;
}

.flex {
    display: flex;
    gap: 20px
}

.my-container {
  width: 350px;
  background: #fff;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0px 5px 14px 1px rgba(0.15, 0.15, 0.15, 0.15);
}

.knop {
    border-radius: 8px;
    border: 1px solid var(--blauw);
    width: 200px;
    margin-left: 30px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.knop.blauw {
    color: white;
    background-color: var(--blauw)
}

/* popups */

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 35px 45px;
    border-radius: 8px;
    z-index: 1001; /* Popup staat boven overlay */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none; /* Verborgen standaard */
}

.popup h1 {
    margin-bottom: 40px;
}

.bedekking {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5); /* Doorzichtige achtergrond */
    z-index: 1000;
    pointer-events: none; /* Blokkeert interactie standaard */
    display: none; /* Verborgen standaard */
}
.bedekking.twee {
    z-index: 1002;
}
.bedekking.active {
    display: block;
    pointer-events: auto; /* Overlay vangt alle clicks op */
}

.popup.active {
    display: flex;
    flex-direction: column;
}
