body {
    font-family: Arial, sans-serif;
    background-color: #f0f2f5;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.search-container input {
    max-width: 500px;
    margin-right: 10px;
}

.filter-column {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.job-listings {
    height: calc(100vh - 150px);
    overflow-y: auto;
}

.job-card {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.filter-toggle {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

@media (max-width: 991px) {
    .filter-column {
        position: fixed;
        left: -100%;
        top: 0;
        bottom: 0;
        width: 80%;
        max-width: 300px;
        z-index: 1000;
        transition: left 0.3s ease-in-out;
        overflow-y: auto;
    }

    .filter-column.show {
        left: 0;
    }

    .filter-toggle {
        display: block;
    }
}