.title-bar {
    background-color: #00cf00;
    color: white;
    height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    border-bottom: 2px solid #00ff00; 
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    width: 100%; 
    box-sizing: border-box;

}

#index{
    color: #00ff00;
    font-family: 'xp', sans-serif;
}


.title-bar .title {
    font-weight: bold;
    font-family: 'xp', sans-serif;
    font-size: x-large;
}


.controls {
    display: flex;
}


.controls span {
    width: 20px;
    height: 20px;
    background-color: #000000;
    color: #00cf00  ;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
}

.controls a {
    text-decoration: none;
}

.controls a:visited{
    text-decoration: none;
}


.controls span:hover {
    background-color: #818181;
}


.content {
    padding: 20px;
    color: black;
    height: calc(80vh - 40px); 
    overflow-y: auto;
    box-sizing: border-box;
}

.content img {
    
}
.window {
    width: 70%; 
    height: 80vh;
    border-radius: 2%;
    margin: 1%;
    border: 10px solid #00ff00; 
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
    position: absolute;
    right: 0;
    background: #FFFFFF;
    box-sizing: border-box;
    display: flex;
    flex-direction: column; 
}
.window-content {
    display: flex; 
    flex-grow: 1; 
    height: calc(80vh - 40px); 
}

.navbar {
    margin-top: 2%;
    width: 15%; 
    background-color: #F0F0F0;
    border-right: 2px solid #00cf00; 
    padding: 10px;
    box-sizing: border-box;
}
.navbar p {
    padding: 3px;
    align-items: center;
    display: flex;
}

.window-text {
    width: 85%;
    padding: 20px;
    color: black;
    overflow-y: auto;
    box-sizing: border-box;
}
.image-container {
    display: flex;
    justify-content: space-between; 
    margin-top: 20px; 
    padding: 10px 0;
    border-top: 2px solid #00ff00; 
}

.image-container img {
    width: 200px; 
    height: 200px; 
    border: 2px solid #00ff00; 
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); 
}

/* .image-container img:hover {
    transform: scale(1.1);
} */





.leeruitkomst-box {
    background-color: #f5f5f5; 
    padding: 15px;
    margin-top: 25px;
    border: 1px solid #00cf00; 
    border-radius: 4px;
}

.leeruitkomst-box h2 {
    margin-top: 0;
    color: #00cf00; 
    font-family: 'xp', sans-serif;
    font-size: xx-large;
}

.leeruitkomst-box p {
    margin: 5px 0;
    /* font-family: 'xp', sans-serif; */
}





.bewijzen a:hover {
    text-decoration: underline;
}
.bewijzen-box {
    display: flex;
    gap: 20px; 
    border-top: 2px solid #00cf00; 
    padding-top: 10px; 
    margin-top: 15px; 
}


.bewijzen {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bewijzen li {
    margin: 5px 0;
}

.bewijzen a {
    color: #00cf00; 
    text-decoration: none;
    font-family: 'xp', sans-serif;
    font-size: 1.3em;
}

.bewijzen a:hover {
    text-decoration: underline;
}
