/* Algemene instellingen */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
.flex-container {
    display: flex;
    justify-content: center;
  }
  
  
.container {
    max-width: 600px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #28a745;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}

/* Knop breedte aanpassen voor grotere schermen (PC) */
@media (min-width: 768px) {
    button {
        width: 50%; /* Knop smaller op pc */
    }
}

/* Formuliervelden onder elkaar zetten */
input, select, textarea {
    display: block;
    width: 100%;
}

/* Dropdown-menu voor technieken */
select {
    padding: 10px;
    border-radius: 4px;
}

/* Responsiviteit voor mobiel */
@media (max-width: 767px) {
    .container {
        padding: 15px;
    }
    button {
        width: 80%; /* Knop breder op mobiel */
    }
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.navbar {
    background-color: #28a745;
    padding: 15px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Zorgt ervoor dat de items in de navbar goed schalen */
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    margin: 5px;
}

.container {
    max-width: 90%; /* Veranderd van 600px naar 90% voor kleinere schermen */
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2, h3 {
    text-align: center;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    margin: 15px 0;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

a {
    color: #28a745;
    text-decoration: none;
}

button {
    background-color: #28a745;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    width: 100%; /* Zorgt ervoor dat de knop goed schaalt */
}

button:hover {
    background-color: #218838;
}

/* Media Query voor mobiel en kleinere schermen */
@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column; /* Zorgt ervoor dat de navigatielinks onder elkaar staan op kleinere schermen */
    }

    .container {
        max-width: 95%; /* Container wordt breder op kleinere schermen */
        padding: 10px; /* Minder padding op kleine schermen */
    }

    h2, h3 {
        font-size: 1.5rem; /* Grotere tekst op kleinere schermen */
    }

    ul {
        padding-left: 10px; /* Kleinere padding op kleinere schermen */
    }

    li {
        margin: 10px 0;
    }

    input, select, textarea {
        width: 100%; /* Zorgt ervoor dat alle invoervelden volledig breed zijn */
    }

    .checkbox-group {
        display: block; /* Zorgt ervoor dat de checkboxen onder elkaar komen te staan */
    }

    .checkbox-group label {
        font-size: 14px; /* Kleinere tekst voor checkboxen */
    }
}
