/* Hero Section */
.jobs-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    margin-bottom: 30px;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
}

.search-box form {
    gap: 10px;
}

.search-box .form-control {
    border-radius: 50px;
    padding: 12px 25px;
    border: 2px solid #dee2e6;
    transition: all 0.3s ease;
}

.search-box .form-control:focus {
    border-color: #0ABF8E;
    box-shadow: 0 0 0 0.25rem rgba(10, 191, 142, 0.25);
}

.search-box .btn {
    border-radius: 50px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #0ABF8E 0%, #1E90FF 100%);
    border: none;
    transition: transform 0.3s ease;
}

.search-box .btn:hover {
    transform: translateY(-2px);
}

/* Filters Card */
.filters-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 20px;
}

.filters-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #202020;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.form-select, .form-control {
    border-radius: 10px;
    border: 2px solid #dee2e6;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.form-select:focus, .form-control:focus {
    border-color: #0ABF8E;
    box-shadow: 0 0 0 0.25rem rgba(10, 191, 142, 0.25);
}

/* Job Cards */
.job-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.job-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.job-title a {
    color: #202020;
    text-decoration: none;
    transition: color 0.3s ease;
}

.job-title a:hover {
    color: #0ABF8E;
}

.job-level {
    background: linear-gradient(135deg, #0ABF8E 0%, #1E90FF 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.875rem;
}

.job-info {
    display: flex;
    gap: 20px;
    color: #6c757d;
    font-size: 0.875rem;
}

.job-location, .job-salary {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* No Jobs State */
.no-jobs {
    text-align: center;
    padding: 50px 20px;
    color: #6c757d;
}

.no-jobs i {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 40px;
}

.page-link {
    border-radius: 50%;
    margin: 0 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0ABF8E;
    border: 2px solid #dee2e6;
    transition: all 0.3s ease;
}

.page-link:hover {
    background-color: #0ABF8E;
    border-color: #0ABF8E;
    color: white;
}

.page-item.active .page-link {
    background-color: #0ABF8E;
    border-color: #0ABF8E;
}

@media (max-width: 991.98px) {
    .filters-card {
        margin-bottom: 30px;
        position: static;
    }
}

.loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 18px;
    color: #28a745;
}
.loader i {
    animation: spin 1s infinite linear;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}