body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column; /* Flex-items onder elkaar plaatsen */
    justify-content: center;
    align-items: center;
    height: 100vh;
}

form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    margin-bottom: 10px;
}

h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px; /* Toegevoegd om ruimte onder de titel toe te voegen */
}

p {
    text-align: center;
    color: #555;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #4caf50;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.omschrijving{
    padding-left: 10%;
    padding-right: 10%;
}
body {
    font-family: Arial, sans-serif;
}
.container {
    width: 80%;
    margin: 0 auto;
}
h2 {
    text-align: center;
}
.datum {
    cursor: pointer;
    padding: 5px;
    background-color: #f0f0f0;
    border-radius: 5px;
    margin-bottom: 10px;
}
.media {
    display: block; /* Nu standaard weergeven */
}
.media img, .media video {
    max-width: 100%;
    margin-bottom: 10px;
    cursor: pointer; /* Toegevoegd om de cursor te veranderen naar pointer bij het hoveren over afbeeldingen en video's */
}
.carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}
.carousel img {
    max-width: 200px;
    max-height: 150px; /* Aanpassen aan gewenste hoogte */
    margin: 10px;
}
/* Stijlen voor modaal venster */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 800px;
    margin-top: 50px;
}
.modal-content img, .modal-content video {
    width: 100%;
    height: auto;
}