.job-archive-container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.job-filters {
    flex: 0 0 280px;
    background: #f5f5f5;
    padding: 20px;
    border-radius: 5px;
    position: sticky;
    top: 20px;
    align-self: flex-start;
}

.job-results {
    flex: 1;
}


.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-label {
    display: none;
}

.selected-filter-value {
    flex-grow: 1;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 6px;
}

.clear-filter {
    padding: 0 6px;
    display: none;
}


#job-filter-form .filter-select {
    width: 100%;
    padding: 8px 6px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    margin-bottom: 0;
}

.filter-reset {
    font-size: 16px;
    background: #fff;
    border: none;
    cursor: pointer;
    color: #f95700;
}

.filter-reset:hover {
    background: #fff;
}

.job-listing {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.job-title {
    margin: 0 0 10px 0;
    font-size: 1.2em;
}

.job-title a {
    color: #0073aa;
    text-decoration: none;
}

.job-title a:hover {
    text-decoration: underline;
}

.job-meta {
    display: flex;
    gap: 15px;
    margin: 10px 0;
    color: #666;
    font-size: 0.9em;
    flex-wrap: wrap;
}

.job-content {
    margin-top: 15px;
    font-size: 0.95em;
    line-height: 1.5;
}

.job-pagination {
    margin: 40px 0 20px;
    text-align: center;
}

.job-pagination ul {
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0;
}

.job-pagination li {
    display: inline;
    margin: 0 3px;
}

.job-pagination a,
.job-pagination span {
    display: inline-block;
    padding: 5px 12px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #0073aa;
    border-radius: 3px;
    font-size: 0.9em;
}

.job-pagination .current {
    background: #0073aa;
    color: white;
    border-color: #0073aa;
}

.job-pagination a:hover {
    background: #f5f5f5;
}

.loading {
    padding: 20px;
    text-align: center;
    color: #666;
    font-style: italic;
}

@media (max-width: 768px) {
    .job-archive-container {
        flex-direction: column;
    }
    
    .job-filters {
        flex: 1;
        position: static;
        margin-bottom: 30px;
    }
}