.page_container{
    display: flex;
    justify-content: center;
}

.page{
    width: 80vw;
    display: flex;
    flex-direction: column;
    background-color: #fafafa;
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: none; /* Firefox */
}
::-webkit-scrollbar {
    display: none;
}
.page_header{
    display: flex;
    justify-content: center;
}
.page_content{
    padding-inline: 10px;
}
.page_content div{
    margin-top: 10px;
}
.loading_spinner{
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.result_tab{
    opacity: 0;
    transition: opacity 1s ease
}
.clickable_file{
    font-style: italic;
    color: #5b5bff !important;
    cursor: pointer;
}
.criteria_table {
    display: flex;
    align-items: flex-end;
}
.criteria_table table {
    width: 90%;
    border: 0;
}
.criteria_table table input {
    width: 100%;
}

.bronze-color {
    color: brown;
}
.silver-color {
    color: silver;
}
.gold-color {
    color: gold;
}
#loading_info{
    margin-top: 19px;
}
.vacancy_prompt {
    height: 400px;
}
.description_criteria {
    width: 500px !important;
}