
.page {
    display: flex;
    flex-direction: column;
    font-family: Arial;
    height: 80%;
    align-items: center;
}

.personalia {
    background-color: #e7e8ec;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile {
    background-color: #faf8f8;
    display: flex;

    width: 100%;
}

.person-logo {
    border: 4px solid black;
    border-radius: 50%;
    margin: 15px 0px 15px 0px;
    width: 65%;
    animation: glow 3s ease alternate;
}

.profile-content {
    padding: 15px;
    font-size: 20px;
}
.profile-content__category--personalInfo {
    font-size: 25px;
}

.profile-content__category-title {
    color: rgba(39, 140, 39, 0.96);
    font-size: 45px;
}

.profile-content__category--hidden-mobile {
    display: none;
}

.profile-content__element {
    display: flex;
    flex-direction: column;
}

.profile-content__element--hidden-mobile {
    display: none;
}

.profile-content__title {
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 2px;
    margin-top: 6px;
}

.formItem {
    margin-bottom: 10px;
    font-weight: bold;
    flex-direction: row;
    min-height: 25px;
    border-color: #45a049;
    border-radius: 20px;
}
.formDivs {
    width: 50%;
    align-items: end;
}

.contactContainer {
    text-align: center;
    height: 50%;
    width: 50%;
}

.profile-content__period {
    display: none;
}

.profile-content__institute {
    color: rgba(39, 140, 39, 0.96);
    margin-top: 0px;
    font-size: 14px;
}

.cookie-consent-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    display: none; /* Hidden by default */
    z-index: 1001; /* Above the frosted effect */
}
.cookie-consent-popup.show {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
}
  
.cookie-consent-popup p {
    margin: 0;
    font-size: 14px;
}

.cookie-consent-popup button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    margin-left: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.Cookie--Accept, .Cookie--Reject {
    background-color: #d5f5d5;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid gray;
    display: inline-block; /* Ensure inline display for layout */
}

.Cookie--Reject {
    background-color: #f8d7da; /* Different background for reject button */
}

.cookie-consent-popup button:hover {
    background-color: #45a049;
}
.cookie-consent-popup {
    z-index: 2000; 
}

.defaultSpacing {
    margin-top: 15px;
}

.centration {
    size: 25em;
    margin: 10px, 10px, 10px, 10px;
}

.buttonMargin {
    margin-top: 15px;
}
.notes {
    font-size: 10px;
}

.contactform-content__category-title {
    color: rgba(39, 140, 39, 0.96);
    font-size: 25px;
    text-align: center;
}

.Header {
    display: flex;
    background-color: #45a049;
    border-bottom: #d5f5d5 0.5px;
    flex-direction: row;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    height: 25%;
}

.headerItem {
    width: 50%;
    padding: 5px;
    font-size: 20px;
    background-color: #45a049;
    border: 5px solid #d5f5d5;
    margin: 10px;
}
body {
    background-color: #d5f5d5;
    height: 100%;
    width: 100%;
    margin: 0;
}

textarea {
    width: 312px;
    height: 165px;
}
.hide { display: none; }
  
.show { display: block; }
  
@media only screen and (min-width: 800px) {

    #centration {
        size: 35em;
        margin: 10px, 10px, 10px, 10px;
    }

    .page {
        flex-direction: row;
        align-items: center;
    }

    .person-name{
        order: -1;
        font-size: 35px;
    }

    .profile-content__category--hidden-mobile{
        display: flex;
        flex-direction: column;
    }

    .profile-content__element--hidden-mobile {
        display: flex;
    }

    .profile-content__period {
        font-size: 12px;
        color: #5c6166;
        display: block; /* Ensure visibility in desktop layout */
    }

    .formItem {
        min-height: 50px;
    }

    .Header {
        display: flex;
        background-color: #45a049;
        border-bottom: #d5f5d5 0.5px;
        flex-direction: row;
        font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
        height: 25%;
    }
    
    .headerItem {
        width: 50%;
        padding: 5px;
        margin-left: 20px;
        font-size: 50px;
        background-color: #45a049;
        border: 10px solid #d5f5d5;
        margin: 10px;
    }

}