
.job-listings-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.job-filters {
    background: #f5f5f5;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.filter-group label {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.filter-group input[type='date'] {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.filter-group input[type='checkbox'] {
    margin-right: 8px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #0073aa;
    color: white;
}

.btn-primary:hover {
    background: #005a87;
}

.btn-secondary {
    background: #666;
    color: white;
    margin-right: 10px;
}

.btn-secondary:hover {
    background: #444;
}

.btn-filter {
    background: #28a745;
    color: white;
}

.btn-filter:hover {
    background: #218838;
}

.btn-reset {
    background: #dc3545;
    color: white;
}

.btn-reset:hover {
    background: #c82333;
}

.job-accordion {
    margin-top: 20px;
}

.job-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.job-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.job-item.expired {
    opacity: 0.7;
    background: #f9f9f9;
}

.job-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fafafa;
    border-bottom: 1px solid #e0e0e0;
}

.job-header:hover {
    background: #f0f0f0;
}

.job-header h3 {
    margin: 0;
    font-size: 20px;
    color: #333;
}

.job-toggle {
    font-size: 24px;
    font-weight: bold;
    color: #0073aa;
    transition: transform 0.3s ease;
}

.job-item.active .job-toggle {
    transform: rotate(45deg);
}

.job-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.job-item.active .job-content {
    max-height: 2000px;
    padding: 20px;
}

.job-description {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}

.job-meta {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.job-meta p {
    margin: 8px 0;
    font-size: 14px;
}

.expired-notice {
    color: #dc3545;
    font-weight: bold;
}

.job-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.no-jobs {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 16px;
}

@media (max-width: 768px) {
    .job-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
}
