﻿
/* Wait cursor */
#waitCursor {
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 99;
    font-size: 40px;
}

#waitCursor span {
    margin-top: 40px;
    text-align: center;
    width: 100%;
}

/* base layout */
.jobContainer {
    display: flex;
    gap: 60px;
}

.jobFilterContainer {
    flex: 0 0 350px;
    align-self: flex-start;
    position: relative;
}

.jobListContainer {
    flex: 1;
}

#jobCountDisplay {
    margin-bottom: 20px;
}

/* Filter */

.jobFilterContainer {
    padding: 15px;
    background-color: #EFF4F7;
}

.jobFilterContainer h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 20px;
}

.jobFilterContainer label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.jobFilterContainer input[type="text"],
.jobFilterContainer select {
    width: 100%; 
    padding: 8px;
    margin-bottom: 15px; 
    border: 1px solid #ccc;
    border-radius: 4px;
}

#jobFilterSearchButton {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 8px;
    width: 100%;
}

.jobFilterContainer i {
    font-size: 20px;
    color: #fff;
}

.jobFilterTitle {
    font-weight: 500;
    margin-bottom: 10px;
    display: inline-block;
}

#clearFilterLink {
    display: block;
    margin-top: 10px;
    text-decoration: none;
}

#clearFilterLink:hover {
    text-decoration: underline;
}

#expandFilterButton {
    position: absolute;
    top: 15px;
    right: 15px; 
    display: none;
}


/* Job object*/

.jobObject {
    margin-bottom: 10px;
    padding: 10px;
}

.jobObject:hover {
    background-color: #EFF4F7;
}

.jobObject:hover a {
    text-decoration: none;
}

.jobObjectTitle h2 {
    font-size: 21px;
    margin-bottom: 0;
}

.jobObjectDescription {
    color: #191919;
    font-size: 16px;
}

.jobObjectAdditionalInfoContainer {
    color: #191919;
    margin-top: 3px;
}

.jobObjectDate {
    color: #AD5F70;
    font-weight: 400;
    display: inline-block;
}

.jobObjectCity {
    color: #AD5F70;
    font-weight: 400;
    display: inline-block;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid #AD5F70
}

.jobObjectJobType {
    color: #AD5F70;
    font-weight: 400;
    display: inline-block;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid #AD5F70
}

.jobObjectPensum {
    color: #AD5F70;
    font-weight: 400;
    display: inline-block;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid #AD5F70
}

@media (max-width: 1279.9px) {

    .jobFilterContainer {
        flex: 0 0 250px;
    }
    
    .jobContainer {
        display: flex;
        gap: 40px;
    }
}




@media (max-width: 767.9px) {
    .jobContainer {
        flex-direction: column;
        gap: 10px;
    }

    .jobFilterContainer {
        width: 100%;
    }

    .jobListContainer {
        width: 100%;
    }

    #jobFilterJobTypeContainer {
        display: none;
    }

    #expandFilterButton {
        display: inline-block;
    }
}

