/********** GENERAL **********/
.overflow-y
{
    overflow-y: auto !important;
    scrollbar-width: thin;
}
/********** GENERAL SCROLLBAR **********/
/* Firefox compatibility */
:root{
    scrollbar-face-color: #f1f1f1; /* Firefox 63 compatibility */
    scrollbar-track-color: #555; /* Firefox 63 compatibility */
    scrollbar-color: #555 #f1f1f1;
    scrollbar-width: thin;
}
/* width */
::-webkit-scrollbar {
    width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}
/* Custom Scrollbar */
/* Width */
.scrollbar::-webkit-scrollbar {
    width: 10px;
}
/* Track */
.scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
}
/* Handle */
.scrollbar::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}
/* Handle on hover */
.scrollbar::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.job-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: black;
    margin-bottom: 0.3rem;
}

.job-position-title {
    font-size: 1rem;
    font-weight: bold;
    color: #5d5d5d;
    margin-bottom: 0.6rem;
    margin-top: 0.3rem;
}

