 .advance-job-wrapper {
                font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
                max-width: 100%;
            }

            .job-search-form {
                background: linear-gradient(135deg, <?php echo $primary_color; ?> 0%, <?php echo $primary_color; ?> 100%);
                padding: 30px;
                border-radius: 15px;
                display: flex;
                gap: 15px;
                margin-bottom: 30px;
                flex-wrap: wrap;
                align-items: flex-end;
            }

            .job-search-form .form-group {
                flex: 1;
                min-width: 200px;
            }

            .job-search-form label {
                display: block;
                color: white;
                font-size: 12px;
                font-weight: 600;
                margin-bottom: 8px;
                text-transform: uppercase;
            }

            .job-search-form input,
            .job-search-form select {
                width: 100%;
                padding: 14px 20px;
                border: none;
                border-radius: 8px;
                font-size: 14px;
            }

            

            .job-search-form button:hover {
                background: #333;
            }
			

            .job-tabs {
                display: flex;
                gap: 10px;
                margin-bottom: 30px;
                flex-wrap: wrap;
            }

            .job-tab {
                background: white;
                border-radius: 25px;
                cursor: pointer;
                font-weight: 600;
                transition: all 0.3s;
                text-decoration: none;
            }

            .job-tab:hover {
                border-color: <?php echo $primary_color; ?>;
                color: <?php echo $primary_color; ?>;
            }

            .job-list {
                display: grid;
                grid-template-columns: repeat(2 , 1fr);
                gap: 25px;
                margin-bottom: 40px;
            }

            .job-card {
                background: white;
                border-radius: 12px;
                padding: 25px;
                box-shadow: none !important;
                transition: all 0.3s;
            }

            .job-card:hover {
                box-shadow: 0 5px 20px rgba(0,0,0,0.15);
                transform: translateY(-5px);
            }

            .job-card h3 {
                font-size: 20px;
                margin: 0 0 15px 0;
                font-weight: 700;
            }

            .job-meta {
                display: flex;
                align-items: center;
                gap: 5px;
                margin-bottom: 10px;
                font-size: 14px;
                color: #666;
            }

            .job-meta svg {
                width: 16px;
                height: 16px;
            }

            .job-description {
                color: #666;
                font-size: 14px;
                line-height: 1.6;
                margin-bottom: 15px;
            }

            .job-type-badge {
                display: inline-block;
                padding: 4px 12px;
                background: #f0f0f0;
                border-radius: 15px;
                font-size: 12px;
                font-weight: 600;
                margin-bottom: 15px;
                text-transform: uppercase;
            }

            .job-salary-badge {
                display: block;
                padding: 8px 16px;
                color: white;
                border-radius: 20px;
                font-size: 14px;
                font-weight: 700;
                margin-bottom: 15px;
            }

            .job-buttons {
                display: flex;
                gap: 10px;
                margin-top: 20px;
            }

            .btn-readmore,
            .btn-apply {
                padding: 12px 20px;
                border-radius: 8px;
                text-align: center;
                font-weight: 700;
                cursor: pointer;
                transition: all 0.3s;
                text-decoration: none;
                border: none;
                gap: 5px;
            }

            .btn-readmore {
                background: white;
                color: black;
                border: 2px solid black;
            }

            .btn-apply {
                background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
                color: white;
            }

            .btn-apply::after {
                content: '↗';
            }

            .job-pagination {
                display: flex;
                justify-content: center;
                gap: 10px;
                margin-top: 30px;
            }

            .job-pagination a,
            .job-pagination span {
                padding: 10px 15px;
                border-radius: 8px;
                text-decoration: none;
                color: #333;
                border: 1px solid #ddd;
                transition: all 0.3s;
            }

            .job-pagination a:hover {
                background: <?php echo $primary_color; ?>;
                color: white;
                border-color: <?php echo $primary_color; ?>;
            }

            .job-pagination .current {
                background: <?php echo $primary_color; ?>;
                color: white;
                border-color: <?php echo $primary_color; ?>;
            }

            .no-jobs-found {
                text-align: center;
                padding: 40px;
                font-size: 16px;
                color: #666;
            }

            @media (max-width: 768px) {
                .job-search-form {
                    flex-direction: column;
                }
                
                .job-list {
                    grid-template-columns: 1fr;
                }

                .job-buttons {
                    flex-direction: column;
                }
            }


            /* Loader styles */
.advance-job-wrapper {
    position: relative;
}

.job-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

.job-loader .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #EC268F;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Smooth transition for content */
.job-list-container {
    transition: opacity 0.3s ease;
}

/* Error message styling */
.error-message {
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    margin: 20px 0;
}

/* Pagination styling for AJAX */
.job-pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.job-pagination li {
    display: inline-block;
}

.job-pagination a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.job-pagination .current {
    cursor: default;
}

/* Fade animation for job cards */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.job-card {
    animation: fadeIn 0.5s ease forwards;
}

.job-card:nth-child(1) { animation-delay: 0.1s; }
.job-card:nth-child(2) { animation-delay: 0.2s; }
.job-card:nth-child(3) { animation-delay: 0.3s; }
.job-card:nth-child(4) { animation-delay: 0.4s; }
.job-card:nth-child(5) { animation-delay: 0.5s; }
.job-card:nth-child(6) { animation-delay: 0.6s; }