/* PC Version */

body {
    margin: 0;
    padding: 20px;
    cursor: crosshair;
    /* font-family: Arial, Helvetica, sans-serif; */ 
}

body::-webkit-scrollbar{
    display: none;
    -ms-overflow-style: none;  /* IE and Edge */ 
    scrollbar-width: none; 
  }

a {
    color: black;
    text-decoration: none;
    font-family: 'Times New Roman', Times, serif;
    cursor: crosshair;
}



a:hover {
    text-decoration: underline;
}

img {
    max-width: 110%;
}

#bild {
    max-height: 90vh;
}

#bild-container {
  display: flex;
  justify-content: center; /* Horizontal zentrieren */
  align-items: center; /* Vertikal zentrieren */
}

.container {
    position: relative;
    display: flex;
    flex-direction: row;
    align-content: stretch;
    height: 95vh;
}

.leftBoard {
    width: 400px; 
    padding-top: 0px;
    padding-bottom: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    border-right:1px solid black;

}

.header {
    border-bottom:1px solid black;
}

.description {
    border-bottom:1px solid black;
    height: 400px;
    overflow: auto;
}

.description::-webkit-scrollbar{
    display: none;
    -ms-overflow-style: none;  /* IE and Edge */ 
    scrollbar-width: none; 
  }

.stickyBlock {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 20px;
}

.rightBoard {
    flex: 1;
    padding: 20px;
    padding-top: 0px;
    box-sizing: border-box;
    overflow-y: auto;
    justify-content: center;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none; 
}


.rightBoard::-webkit-scrollbar{
    display: none;
}


.rightBoard2 {
    flex: 1;
    padding: 20px;
    padding-top: 0px;
    box-sizing: border-box;
    overflow-y: auto;
    -ms-overflow-style: none;  /* IE and Edge */ 
    scrollbar-width: none; 
}

.rightBoard2::-webkit-scrollbar{
    display: none;
}

.lebenslaufteile {
    display: flex;
}

.taetigkeit {
position: relative;
padding-left: 15px;
}

.zeiten {
    width: 140px ;
    text-align: left;
    flex-direction: row;
    position: relative;

}

.block {
    margin: auto;
    width: 65%;
    padding: 10px;
}

.block {
    padding: 10px;
    align-content: left;
}


.mePicture {
    padding-top: 20px;
    height: 230px;
}

h6 {
    font-size: 9pt;
    text-decoration: none;
    font-weight: normal;
}


.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white; 
    z-index: 1;
    text-align: center;
}

.popup-schliessen {
    color: black;
    font-size: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.popup img {
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* -------------------------------------------------------------- */
/* Mobile Version 
@media only screen and (max-width: 1000px) {
    .rightBoard {
        display: none;
    }
    .description{
        display: none;
    }
    .leftBoard{
        background-color: whitesmoke;

    }
} */