.textBlock {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: white;
    padding: 2px;
    margin: 5px;
}

.tabContainer {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 90%;
}

.tab-content {
    background-color: rgb(241, 240, 240);
    height: 90%;
}

#login {
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 80%;
}

#login.active {
    display: flex;
}

#loginContainer {
    display: flex;
    flex-direction: column;
    width: 50%;
    height: 60%;
    border: 1px;
    border-color: black;
    background-color: white;
    border-style: solid;
    padding: 1%;


}

.centered-title {
    text-align: center;
}

.login-element {
    margin-top: 3%;
}

#login-button-box {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    gap: 10%;
}

.loginButton {
    border: 0;
}

#home {
    flex-direction: column;
    flex-wrap: wrap;
}

#home.active {
    display: flex;
}

.postContainer {
    width: 30%;
}

#postBox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1%;
}


#postFullView,
#applicationFullView {
    position: fixed;
    top: 56px;
    left: 0;
    width: 100%;
    height: calc(100vh - 56px);
    background: white;
    z-index: 1050;
    padding: 20px;
    overflow-y: auto;
}

.postFullHeader {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

#postFullContent,
#applicationFullContent {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 100%;
}

#postDetailsHeader {
    display: flex;
    flex-direction: row;
    gap: 5%;
}

#postDetails,
#applicationDetails {
    display: flex;
    flex-direction: column;
    gap: 5%;
    height: 90%;
    width: 40%;
}

#postDescription,
#postPrerequisites,
#motivationLetter {
    height: 20%;
    width: 100%;
    border: 1px;
    border-color: black;
    border-style: solid;
    padding: 1%;
}

#modifyPostModal .modal-dialog {
    max-width: 50%;
}

.modifyPostBody {
    display: flex;
    flex-direction: column;
    gap: 5%;
}

#inputDescription {
    height: 20%;
}

#inputPrerequisites {
    height: 20%;
}

#newPostBox {
    display: flex;
    flex-direction: column;
    gap: 3%;
    padding: 5%;
}

#buttonBox {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10%;
    margin-top: 3%;
}

#upperInfos {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 50%;
}

#genericInfos {
    display: flex;
    flex-direction: column;
    gap: 5%;
}

#imagePickerArea {
    display: flex;
    flex-direction: column;
}

#lowerInfos {
    display: flex;
    flex-direction: column;
    height: 50%;
}

#fileButtons {
    display: flex;
    flex-direction: column;
}

#postModal .modal-dialog {
    height: 80%;
}

#postModal .modal-content {
    height: 100%;
}

#candidateImage {
    width: 20%;
}

#applicationRightSide,
#applicationLeftSide {
    width: 40%;
    gap: 5%;
    display: flex;
    flex-direction: column;
}

#cadidateInfos {
    display: flex;
    flex-direction: column;
    gap: 5%;
    height: 50%;
}

#candidateInfoHeader {
    display: flex;
    flex-direction: row;
    gap: 5%;
}