﻿.container {
    display: flex;
    padding: 20px;
    gap: 20px;
}
.filter-panel1 {
    width: 27%;
    padding: 20px;
    margin-right: -19px;
}

.job-listings {
    width: 55%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-alert {
    background-color: #E3E3E3;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 250px;
}

    .job-alert h2 {
        margin: 0 0 10px;
        font-size: 18px;
    }

    .job-alert p {
        margin: 0 0 20px;
        font-size: 14px;
        color: #666;
    }

.toggle-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.switch {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 30px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 24px;
        width: 24px;
        left: 2px;
        bottom: 3px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }

input:checked + .slider {
    background-color: #4CAF50;
}

    input:checked + .slider:before {
        transform: translateX(20px);
    }

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }

input:checked + .slider {
    background-color: #4CAF50;
}

    input:checked + .slider:before {
        transform: translateX(26px);
    }


.job-item {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

    .job-item h3 {
        margin-top: 0;
    }

form {
    margin-bottom: 20px;
}


.right-panel {
    width: 27%;
    padding: 20px;
    margin-left: 20px;
}







.content-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.job-listings {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -16px -19px 0 -15px;
    padding: 10px 20px;
    border-radius: 10px;
}

.view-options {
    display: flex;
    align-items: center;
}

    .view-options i {
        margin: 0 10px;
        cursor: pointer;
    }

    .view-options span {
        display: flex;
        align-items: center;
        cursor: pointer;
    }

        .view-options span i {
            margin-left: 5px;
        }




.search_bar-container {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    top: -3px;
    left: -6px;
}



.pagination {
    display: flex;
    list-style: none;
    padding: 0;
}

    .pagination li {
        margin: 0 5px;
    }

    .pagination a {
        text-decoration: none;
        color: #000;
        padding: 10px 15px;
        border-radius: 5px;
    }

    .pagination .active a {
        background-color: orange;
        color: white;
    }

.right-panel {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ad img {
    max-width: 100%;
    height: auto;
}
