:root {
    --bgPattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cg fill='%236c757d' fill-opacity='0.025'%3E%3Cpolygon fill-rule='evenodd' points='8 4 12 6 8 8 6 12 4 8 0 6 4 4 6 0 8 4'/%3E%3C/g%3E%3C/svg%3E");

    --bg: #f5f7fa;
    --text: #1e1e1e;
    --textSecond: #5C6670;
    --muted: #7c6f66;
    --border: #e7e5e7;

    --primary: #4361EE ;
    --primary-hover: #a6641d;

    --accent: #1f4fff ;
    --accentHover: rgb(58, 12, 163);

    --card-bg: #1e1e1e;
    --cart-bg2: #f0f2f5;
    --input-bg: #fffaf5;

    --badge: #f6e2ed;

    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadowHover: 0 4px 50px rgba(0, 0, 0, 0.3);



    --fontLogo: 'Sora';
    --fontMain: 'Inter';

}






.main {
    width: 93vw;
    max-width: 1100px;
    height: max-content;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
}

.jobListMainText {
    color: var(--text);
    font-family: var(--fontLogo);
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 100px;
}

.jobs {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    min-height: 450px;
}

.jobList {
    width: 750px;
    height: max-content;
    margin-right: 20px;
}

.jobCard {
    width: 750px;
    min-height: 200px;
    height: max-content;
    border-radius: 20px;
    border: 2px var(--border) solid;
    background-color: var(--bg);
    padding: 20px;
    transition: ease-in-out all 0.3s;
    margin-bottom: 20px;
}

.jobCard:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.jobCardLeft {
    height: 120px;
}

.jobCardFirst {
    display: flex;
    justify-content: space-between;
}

.jobCardTitle {
    color: var(--text);
    font-family: var(--fontLogo);
    font-weight: 700;
    font-size: 1.3rem;
    width: 450px;
}

.jobBadge {
    padding: 3px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: var(--badge);
    border-radius: 3px;
    color: var(--muted);
    font-family: var(--fontLogo);
    font-weight: 600;
    font-size: .8rem;
    margin-right: 5px;
}

.jobLocation {
    display: block;
    color: var(--textSecond);
    font-family: var(--fontLogo);
    font-weight: 500;
    margin-top: 10px;
    font-size: .8rem;
}

.jobCardRight {
    width: 200px;
    display: flex;
    justify-content: left;
}

.employerLogo {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    border: 2px solid var(--border);
}

.employerDetail {
    margin-left: 10px;
    display: grid;
    padding-top: 5px;
    padding-bottom: 70px;
}

.employerName {
    color: var(--text);
    font-family: var(--fontLogo);
    font-weight: 600;
    font-size: .8rem;
}

.employerText {
    color: var(--textSecond);
    font-family: var(--fontLogo);
    font-weight: 500;
    font-size: .75rem;
}

.jobInfo {
    margin-top: 20px;
    min-width: 350px;
    width: max-content;
    display: flex;
    justify-content: space-between;
}

.jobInfoTitle {
    color: var(--text);
    font-family: var(--fontLogo);
    font-weight: 700;
    font-size: .9rem;
}

.jobLanguages {
    color: var(--textSecond);
    font-family: var(--fontLogo);
    font-weight: 500;
    font-size: .8rem;
    margin-top: 3px;
}

.jobSkillBadge {
    padding: 3px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: var(--badge);
    border-radius: 3px;
    color: var(--muted);
    font-family: var(--fontLogo);
    font-weight: 600;
    font-size: .6rem;
}

.jobListPagination {
    display: block;
}

.jobListPaginationInner {
    text-align: center;
}

.jobListPageButton {
    width: 28px;
    height: 28px;
    padding: 0;
    font-size: .85rem;
    background-color: none;
    border: 2px var(--textSecond) solid;
    border-radius: 7px;
    font-weight: 500;
    color: var(--textSecond);
    font-family: var(--fontLogo);
    margin: 0px 5px 15px 5px;
}

.jobListPageButton:hover {
    color: var(--text);
    border-color: var(--text);
}

.jobListPageButton:active {
    background-color: var(--textSecond) !important;
    color: var(--bg) !important;
    box-shadow: var(--shadow) !important;
    border: 2px var(--textSecond) solid !important;
}

.jobListPageButton.active {
    background-color: var(--textSecond);
    color: var(--bg);
    box-shadow: var(--shadow);
    border: 2px var(--textSecond) solid;
}

.jobFilter {
    width: 320px;
    transition: all ease-in-out 0.3s;
}

.jobFilterIndustry {
    background-color: var(--bg);
    width: 100%;
    border: 2px var(--border) solid;
    border-radius: 15px;
    height: 120px;
    padding: 20px;
    padding-top: 15px;
}

.jobFilterTitle {
    font-family: var(--fontLogo);
    font-weight: 600;
    font-size: 1.2rem;
}

.jobFilterIndustrySection {
    position: relative;
    width: 100%;
    font-family: var(--fontLogo);
}

.jobIndustryField {
    cursor: pointer;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 2px var(--border) solid;
    font-family: var(--fontLogo);
    background-color: white;
    border-radius: 10px;
    height: 40px;
    margin-top: 15px;
    padding: 7px;
}

.industryList {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    border: 2px solid var(--border);
    border-radius: 10px;
    border-top: none;
    max-height: 288px;
    overflow-y: auto;
    position: absolute;
    width: 100%;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    top: 100%;
    left: 0;
}

.industryList li {
    padding: 10px 13px;
    cursor: pointer;
    transition: background 0.2s;
}

.industryList li:hover {
    background-color: var(--border);
    border-radius: 5px;
}

.jobFilterSalary {
    background-color: var(--bg);
    width: 100%;
    border: 2px var(--border) solid;
    border-radius: 15px;
    height: 120px;
    padding: 20px;
    padding-top: 15px;
    margin-top: 20px;
}

.jobFilterSalaryRange {
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.jobFilterSalaryRangeText {
    font-family: var(--fontLogo);
    color: var(--textSecond);
    font-weight: 600;
    font-size: 1rem;
    margin-top: 8px;
}

.jobFilterSalaryRangeInput {
    font-family: var(--fontLogo);
    color: var(--text);
    width: 110px;
    height: 40px;
    border: 2px var(--border) solid;
    border-radius: 10px;
    outline: none;
    text-align: center;
    font-weight: 600;
}

.jobFilterSalaryRangeInput::placeholder {
    opacity: .8;
    font-family: var(--fontLogo);
    color: var(--textSecond);
}

.jobFilterLanguage {
    background-color: var(--bg);
    width: 100%;
    border: 2px var(--border) solid;
    font-family: var(--fontLogo);
    border-radius: 15px;
    height: 120px;
    padding: 20px;
    padding-top: 15px;
    margin-top: 20px;
}

.jobFilterLanguageSection {
    position: relative;
    width: 100%;
    font-family: var(--fontLogo);
}

.jobLanguageField {
    cursor: pointer;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 2px var(--border) solid;
    background-color: white;
    border-radius: 10px;
    height: 40px;
    margin-top: 15px;
    padding: 7px;
}

.languageList {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    border: 2px solid var(--border);
    border-radius: 10px;
    border-top: none;
    max-height: 173px;
    overflow-y: auto;
    position: absolute;
    width: 100%;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    top: 100%;
    left: 0;
}

.languageList li {
    padding: 10px 13px;
    cursor: pointer;
    transition: background 0.2s;
}

.languageList li:hover {
    background-color: var(--border);
    border-radius: 5px;
}

.jobFilterButton {
    background-color: var(--textSecond);
    font-family: var(--fontLogo);
    width: 100%;
    border-radius: 8px;
    margin-top: 10px;
    color: var(--bg);
    font-weight: 600;
    transition: all ease-in-out 0.3s;
    border: 1px var(--textSecond) solid;
}

.jobFilterButton:hover {
    background-color: var(--accentHover);
    color: white;
    border: 1px var(--accentHover) solid;
}

.jobFilterButton:disabled {
    background-color: var(--textSecond);
    color: var(--bg);
    cursor: not-allowed;
    opacity: .5;
    border: 1px var(--textSecond) solid;
}

.jobClearFilterButton {
    background-color: var(--bg);
    font-family: var(--fontLogo);
    width: 100%;
    border-radius: 8px;
    margin-top: 10px;
    color: var(--textSecond);
    font-weight: 600;
    transition: all ease-in-out 0.3s;
    border: 1px var(--textSecond) solid;
}

.jobClearFilterButton:hover {
    background-color: var(--bg);
    color: var(--textSecond);
    border: 1px var(--textSecond) solid;
}

.noResult {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 135px;
}

.noResultImage {
    width: 100px;
    height: 100px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.noResultText {
    font-family: var(--fontLogo);
    color: var(--textSecond);
    font-weight: 500;
    font-size: .85rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 10px;
}
