.main-content {
    margin-top: 20px;
}

.job-listings {
    width: 100%;
}

.job-card {
    background-color: #444;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    cursor: pointer;
}

h2 {
    margin-top: 0;
}

.search-bar {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    background-color: #444;
    border: none;
    color: #EDEDED;
    border-radius: 5px;
}

.sort-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.sort-label {
    font-weight: bold;
}

.sort-select {
    background-color: #444;
    color: #EDEDED;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
}

.job-card h3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-family: Lato, sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;
    text-transform: capitalize;
}

.job-card p {
    color: #EDEDED;
    margin-top: 5px;
    font-size: 18px;
    line-height: 1.5rem;
}

.imge-company img {
    width: 80px;
    height: 80px;

    margin-right: 15px;
}



.expire-date {
    text-align: right;
    margin-left: auto;
    align-items: center;
    flex-direction: column;

    display: flex;
    justify-content: center;
}

/* mobile */

@media screen and (max-width: 768px) {
    .job-card {
        flex-direction: column;

    }

    .imge-company img {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }

    .job-info {
        margin-bottom: 10px;


        display: flex;
        flex-direction: column;

    }


}

.no-jobs-message p {
    margin-top: 20px;
    text-align: center;
    color: #EDEDED;
    font-size: 2.5rem;
}