/* Algemene stijl */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f0f4f2;
    color: #333;
}
	/* Navigatiebalk */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 15px 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-weight: bold;
    color: #2e7d32;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

/* animatie lijn onder tekst */
.nav-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -5px;
    background: #2e7d32;
    transition: width 0.3s;
}

.nav-links a:hover {
    color: #2e7d32;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Header */
header {
    background: linear-gradient(120deg, #2e7d32, #66bb6a);
    color: white;
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 2s ease;
}


.apparatuur-table{
    width: 70%;
    margin: 30px auto;
    border-collapse: collapse;
}

.apparatuur-table th,
.apparatuur-table td{
    border: 1px solid black;
    padding: 10px;
	/* centerd het plaatje*/
}

.info-blok {
    max-width: 800px;       
    margin: 30px auto;      
    padding: 20px;
    text-align: center;     
}

.info-blok img {
    width: 100%;          
    max-width: 600px;       
    border-radius: 8px;
    margin-bottom: 15px;
}

/*box om <p> elment heen*/
.info-blok p {
    background-color: #ffffff;     
    border: 2px solid #2e7d32;    
    border-radius: 10px;           
    padding: 15px 20px;            
    margin: 15px auto;             
    text-align: justify;           
    max-width: 700px;              
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);  


/*FOOTER*/

footer {
    text-align: center;
    padding: 20px;
    background: #2e7d32;
    color: white;
}