/* Mobile-first styles */

body {
    background-color: #8ea69b !important;
    margin: 0;
    padding: 0;
}

.page {
    display: flex;
    flex-direction: column;
    font-family: Arial;
}

.person-logo {
    width: 200px;
}

.personalia {
    background-color: #8ea69b;
    padding: 10px;
    text-align: center; /* Center align for mobile */
}

.person {
    margin-bottom: 20px;
}

.profile {
    background-color: #faf8f8;
    padding: 10px;
}

.profile-content__category-title {
    color: rgba(39, 140, 39, 0.96);
    margin-top: 0;
}

.profile-content__element {
    margin-bottom: 20px;
}

.profile-content__title {
    font-weight: bold;
    font-size: 16px;
    margin: 5px 0;
}

.profile-content__period {
    font-size: 14px;
    color: #5c6166;
    margin: 5px 0;
}

.profile-content__institute {
    color: rgba(39, 140, 39, 0.96);
    margin: 5px 0;
}

.profile-content__description {
    font-size: 14px;
    margin: 5px 0;
}

ul {
    padding-left: 20px;
}

.contact {
    background-color: #8ea69b; /* Achtergrondkleur toegevoegd */
    position: fixed;
    top: 10px;
    left: 10px;
}

.circle {
    border-radius: 50%;
    height: 20px;
    width: 20px;
    background-color: black;
}

/* Media queries voor aanpassingen op grotere schermen */

@media only screen and (min-width: 768px) {

    .page {
        flex-direction: row; /* Flex-direction aangepast voor grotere schermen */
    }

    .personalia {
        flex-direction: row; /* Flex-direction aangepast voor grotere schermen */
        justify-content: space-between; /* Ruimte tussen elementen op grotere schermen */
        padding: 20px; /* Padding aangepast voor grotere schermen */
        align-items: center; /* Uitlijning aangepast voor grotere schermen */
        width: 50%;
    }

    .person {
        margin-bottom: 0; /* Marge aangepast voor grotere schermen */
    }

    .profile-content {
        margin-left: 20px; /* Ruimte tussen de persoonlijke gegevens en het profiel op grotere schermen */
    }
}

/*student uitwerking*/

/*GDPR*/


.container {
    display: flex;
    flex-direction: column;
    font-family: Arial;
}

.gdpr-consent {
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: black;
    padding-bottom: 10px;
}

.gdpr-consent__description {
    display: flex;
    justify-content: center;
}

.gdpr-consent__choice {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-evenly;
    width: 100%;
}

.gdpr-consent__button--accept {
    color: black;
    background-color: #8ea69b;
    padding: 10px;
    /* border-radius: 10px; */
    border: 1px solid #8ea69b;
}

    .gdpr-consent__button--accept:hover {
        background-color: #c5e3c5;
    }

.gdpr-consent__button--reject {
    padding: 10px;
    /* border-radius: 10px; */
    border: 1px solid white;
}

.hide {
    display: none;
}

.show {
    display: block;
}
