/* ================== Job Listing (Preserved Original) ================== */
.topstatinfo{margin-bottom: 30px;}
.searchList {
    list-style: none;
    margin-bottom: 30px;
}
.searchList > li {
    background: #fcfdff;
    border-radius: 10px;
    transition: all 0.4s ease;
    border: 1px solid #eee;
    padding: 22px 18px;
    margin-bottom: 15px;
}
.searchList > li.featured{background: #f7f5ff; border-color: #ddd;}
.searchList > li:hover {
    box-shadow: 0px 10px 20px -5px rgba(0,0,0,0.1);
    border-bottom-color:#056cb8;
}
.searchList > li .jobimg {
    float: left;
    width: 70px;
    margin-right: 15px;
}
.searchList > li .jobimg img{border-radius: 10px;}
.searchList > li h3 a {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}
.searchList li .companyName {
    margin: 10px 0;
    color: #969595;
}
.searchList li .companyName a {
    color: #969595;
}
.searchList li a:hover {
    color: #333;
}
.searchList li .location {color: #000;}
.searchList li .location span {color: #333;}
.searchList li .listbtn {
    margin-top: 20px;
    display: flex;
    gap: 5px;
    justify-content: right;
}
.searchList li .listbtn a {
    background: #fff;
    display: block;
    border-radius: 7px;
    color: #056cb8;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0 15px;
    text-align: center;
    border: 1px solid #056cb8;
    line-height: 36px;
}
.searchList li .listbtn a:hover {
    background: #056cb8;
    color: #fff;
    text-decoration: none;
}
.searchList li .listbtn .fas.fa-heart{color: #da0303;}
.searchList li .listbtn a.favbtn{border-color: #da0303;}
.searchList li .listbtn a.favbtn:hover{background: #eee;}
.searchList li p {
    line-height: 22px;
    color: #333;
    margin: 10px 0 0 0;
}
.searchList li .cateinfo {
    color: #056cb8;
    margin: 10px 0;
}
.searchList li .minsalary {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-top: 25px;
    color: #056cb8;
}
.searchList li .minsalary span {
    color: #999;
    font-weight: 400;
}

/* Pagination */
.pagiWrap .showreslt {
    font-weight: 600;
    margin-top: 10px;
}
.pagiWrap .pagination {
    text-align: right;
    margin: 0;
}
.pagination>li:first-child>a, .pagination>li:first-child>span, 
.pagination>li:last-child>a, .pagination>li:last-child>span {
    border-radius: 0;
}

/* ================== Sidebar (Scoped & Improved) ================== */
.sidebar-container {
    background: #f2f6fd;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    width: 260px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.sidebar-container .jobreqbtn a {
    display: block;
    padding: 10px 20px;
    text-align: left;
    margin-bottom: 10px;
    background: #056cb8;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.sidebar-container .jobreqbtn a:hover {
    background: #045a9c;
}
.sidebar-container .jobreqbtn a.btn-job-alert-disabled{
    color: #999!important; border: 1px solid #999; cursor: default; background: none;
}

.sidebar-container .widget {
    margin-bottom: 25px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}
.sidebar-container .widget-title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
}

/* Option list & checkboxes */
.sidebar-container .optionlist {
    list-style: none;
}
.sidebar-container .optionlist li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}
.sidebar-container .optionlist li span {
    position: absolute;
    right: 0;
    top: 6px;
    font-size: 13px;
    color: #555;
}
.sidebar-container .optionlist li input[type=checkbox] {
    display: none;
}
.sidebar-container .optionlist li input[type=checkbox] + label {
    width: 20px;
    height: 20px;
    border: 1px solid #cfd2d6;
    background: #fff;
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 4px;
    transition: all 0.2s;
}
.sidebar-container .optionlist li input[type=checkbox]:checked + label:before {
    content: '\f00c';
    font-family: 'FontAwesome';
    color: #056cb8;
    padding-left: 2px;
    position: relative;
    top: 2px;
    font-size: 12px;
}

/* Sidebar links */
.sidebar-container a {
    color: #056cb8;
    display: inline-block;
    margin-top: 10px;
    transition: color 0.3s;
}
.sidebar-container a:hover {
    color: #034a7f;
}

/* Search Button inside sidebar */
.sidebar-container .searchnt .btn {
    background: #056cb8;
    display: block;
    border-radius: 6px;
    width: 100%;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 15px;
    transition: background 0.3s;
}
.sidebar-container .searchnt .btn:hover {
    background: #045a9c;
}

/* ================== Mobile Sidebar ================== */
#mobileSidebarOverlay {
    display: none;
    position: fixed;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
}
.sidebar-container.active-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100%;
    background: #f2f6fd;
    padding: 20px;
    overflow-y: auto;
    z-index: 999;
    transform: translateX(0);
    box-shadow: 2px 0 12px rgba(0,0,0,0.1);
}
#mobileSidebarOverlay.active-mobile {
    display: block;
}
#mobileSidebarToggle {
    background: #eee;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    display: block;
    margin-bottom: 15px;
    border-radius: 6px;
    transition: all 0.3s;
}
#mobileSidebarToggle:hover {
    background-color: #ddd;
}

/* ================== Responsive ================== */
@media (max-width: 991px) {
    .sidebar-container {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 260px;
        background: #f2f6fd;
        z-index: 999;
        overflow-y: auto;
        transform: translateX(-100%);
    }
    .sidebar-container.active-mobile {
        display: block;
        transform: translateX(0);
    }
}
@media (min-width: 992px) {
    #mobileSidebarToggle {
        display: none;
    }
    #mobileSidebarOverlay {
        display: none !important;
    }
}
