h1, h2, h3, h4, h5, h6, th, dt  { color: #dad141; FONT-FAMILY: "arial", "verdana","bookman old style"; }


body {background-color: #3c649a;
    color: #dad141; FONT-FAMILY: "arial", "verdana","bookman old style";;
    font-size: 16px;}

A {text-decoration: underline;  color: #dad141;  }

A.alg {background-color: #3c649a;}
A.alg:hover{background-color: #587eb1; }

td.alg {background-color: #3c649a; }
td.alg:hover {background-color: #587eb1; }

a.alg,a.bs,a.ob,a.bb
{padding-top:5px;padding-bottom:5px;padding-left:20px; padding-right:20px;font-size: 16px;text-decoration: none;display:block;}

table {
    border-bottom:2px solid #30578b;
    border-right:2px solid #30578b;
    border-left:2px solid #587eb1;
    border-top:2px solid #587eb1}
td {

    border-bottom:1px solid #587eb1;
    border-right:1px solid #587eb1;
    border-left:1px solid #30578b;
    border-top:1px solid #30578b;
    font-size: 12px;
    background-color: #3c649a;}
table, td {
    font-size: 16px;

}
A:hover     {background-color: #587eb1;}


/* https/fotoos site */

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; /* Zorgt voor een gelijke verdeling van de ruimte rond items */
}
.thumbnail-container {
    width: 300px;
    margin: 10px;
    text-align: center; /* Centreert de inhoud (zowel afbeelding als tekst) */
}
.thumbnail {
    width: 100%;
    height: auto;
}
.image-name {
    color: #eee; /* Of een andere kleur die bij uw ontwerp past */
}
.button-container {
    position: absolute;
    top: 0;
    right: 0;
    margin: 20px;
}


.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
}
.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
}

.modal-content img, .modal-content video {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Zorgt ervoor dat de afbeelding of video altijd binnen de container past */
}
.video-control {
    text-align: center;
    margin-top: 10px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}
.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
.modal-prev, .modal-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.3s;
    user-select: none;
}
.modal-prev {
    left: 0;
}
.modal-next {
    right: 0;
}
.modal-prev:hover, .modal-next:hover {
    background-color: rgba(0,0,0,0.8);
}
.modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
}

#likeButton {
    position: absolute;
    bottom: 50px;
    right: 1%;
    transform: translateX(-50%);
    background-color: #4CAF50; /* Groene achtergrondkleur */
    color: white; /* Witte tekstkleur */
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}
#likeButton:hover {
    color: yellow; /* Witte tekstkleur */
}    
#likeButton.liked {
    background-color: yellow; /* Gele achtergrondkleur als geliked */
    color: black; /* Zwarte tekstkleur */
}

.alert {
    padding: 20px;
    background-color: #f44336;
    color: white;
    opacity: 1;
    transition: opacity 0.5s;
    margin-bottom: 15px;
}
.folder-container {
    width: 300px;
    margin: 10px;
    text-align: center;
}
.folder-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.folder-thumbnail {
    width: 100%;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s;
}
.folder-link:hover .folder-thumbnail {
    transform: scale(1.05);
}
