body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f6fbf7;
    margin: 0;
    padding: 0;
    margin-bottom: 40px;
}

.job-board-container {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    padding: 2rem;
    background: #f6fbf7;
    min-height: calc(100vh - 100px);
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
    width: 100%;
}

.job-list-sidebar {
    width: 350px;
    flex-shrink: 0;
    background: #e6f2e6;
    border-radius: 12px;
    padding: 1rem;
}

.job-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.job-card {
    display: block;
    background: #fff;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
}

.job-card:last-child {
    margin-bottom: 0.25rem;
}

.job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.job-card.selected {
    border: 2px solid #4CAF50;
}

.job-card h3.job-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
}

.job-header {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.5rem;
    background: #f8fcf8;
    border-radius: 8px;
    padding: 1.2rem;
    margin-bottom: 0.75rem;
    border: 1px solid #f0f4f0;
}

.job-header .job-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
    color: #222;
    line-height: 1.2;
}

.job-header .job-company {
    color: #555;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.job-header .job-meta-row {
    margin-bottom: 0.75rem;
}

.job-title {
    font-weight: bold;
    color: #388e3c;
    font-size: 1.2rem;
}

.job-company {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.job-meta-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.job-salary {
    background: #e8f5e9;
    color: #2e7d32;
    font-weight: 500;
    border-radius: 8px;
    padding: 0.35rem 0.9rem;
    font-size: 0.9rem;
    box-shadow: 0 1px 2px rgba(46, 125, 50, 0.07);
    margin-right: 0.5rem;
}

.badge-parttime {
    background: #fff9c4;
    color: #bfa100;
    font-weight: 500;
    border-radius: 8px;
    padding: 0.4rem 1rem;
    font-size: 1.1rem;
    box-shadow: 0 1px 2px rgba(191, 161, 0, 0.07);
}

.job-posted {
    color: #888;
    font-size: 0.85rem;
    font-weight: 400;
    white-space: nowrap;
}

.job-type {
    background: #c8e6c9;
    color: #388e3c;
    border-radius: 6px;
    padding: 0.2rem 0.7rem;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    font-weight: 500;
}

.job-details-main {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex: 1;
    max-width: 800px;
}

.job-details-card {
    background: #fff;
    border-radius: 15px;
    height: 100%;
    overflow-y: auto;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

.job-details-header {
    background: #fff;
    padding: 1.5rem 1.5rem 0;
    border-radius: 15px 15px 0 0;
}

.job-details-header h3.job-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
    color: #222;
    line-height: 1.2;
}

.job-details-content {
    padding: 0 1.5rem 1.5rem;
    position: relative;
}

.job-details-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    height: 1px;
    background: linear-gradient(to right, transparent, #e6f2e6, transparent);
}

.job-section {
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.job-section:nth-child(1) { animation-delay: 0.1s; }
.job-section:nth-child(2) { animation-delay: 0.2s; }
.job-section:nth-child(3) { animation-delay: 0.3s; }

.section-header {
    color: #1a472a;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-header::before {
    content: '';
    display: block;
    width: 4px;
    height: 1.2em;
    background: linear-gradient(to bottom, #388e3c, #2e7d32);
    border-radius: 2px;
}

.job-details-card ul {
    line-height: 1.5;
    margin-bottom: 1rem;
    background: #f8fcf8;
    border-radius: 12px;
    padding: 1.25rem 2.5rem 1.25rem 2.5rem;
    border: 1px solid #e6f2e6;
    margin-top: 0.5rem;
    list-style-position: outside;
    margin-left: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.job-details-card ul:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}

.job-details-card ul li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
    position: relative;
    color: #2c3e50;
}

.job-details-card ul li::marker {
    color: #388e3c;
    font-size: 1.1em;
}

.job-details-card hr {
    border: none;
    border-top: 1px solid #e6f2e6;
    margin: 1rem 1.5rem;
    position: sticky;
    top: 100%;
}

/* Apply Now button improvements */
.apply-btn {
    background: linear-gradient(to bottom, #388e3c, #256029);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
    margin-left: 0;
    margin-top: 0.8rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: bold;
    padding: 0.65rem 1.3rem;
    min-width: 120px;
    min-height: 44px;
    cursor: pointer;
    width: auto;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    outline: none;
    box-shadow: 0 1px 4px rgba(56,142,60,0.08);
}

.apply-btn:hover, .apply-btn:focus {
    background: linear-gradient(to bottom, #256029, #1b4d1f);
    box-shadow: 0 4px 8px rgba(56,142,60,0.15),
                0 8px 16px rgba(56,142,60,0.1);
    transform: translateY(-2px) scale(1.01);
}

.apply-btn:active {
    transform: translateY(1px) scale(0.98);
    background: #1b4d1f;
}

.apply-btn:focus-visible {
    outline: 3px solid #388e3c;
    outline-offset: 2px;
}

.apply-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.7;
}

.apply-btn.success {
    background: #4caf50;
}

.apply-btn.success::before {
    content: "✓";
    margin-right: 8px;
}

.apply-btn.loading {
    position: relative;
    color: transparent;
}

.apply-btn.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .apply-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1.1rem;
        padding-bottom: calc(0.875rem + env(safe-area-inset-bottom));
    }
    .job-meta-row {
        gap: 0.5rem;
    }
    .job-posted {
        font-size: 0.85rem;
        order: 3;
        width: 100%;
        margin-top: 0.25rem;
    }
}

/* Icon for Apply Now button */
.apply-btn .btn-icon {
    display: inline-block;
    font-size: 1.3em;
    margin-left: 0.3em;
    vertical-align: middle;
}

/* Animation for job details card */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: none; }
}

.placeholder {
    text-align: center;
    color: #888;
    margin-top: 4rem;
}

.header {
    display: flex;
    align-items: center;
    background: #f6fbf7;
    padding: 1.5rem 2rem;
    border-bottom: none;
    margin-bottom: 0;
    box-shadow: none;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    max-width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-right: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 12px;
}

.logo:hover {
    opacity: 1;
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.1);
}

.logo:active {
    transform: translateY(0);
}

.logo-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(44, 87, 56, 0.1));
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(-5deg);
}

.site-name {
    font-weight: 800;
    font-size: 1.6rem;
    background: linear-gradient(135deg, #2c5738 0%, #388e3c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    letter-spacing: -0.5px;
    margin-left: 0.25rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    text-shadow: 0 2px 4px rgba(44, 87, 56, 0.05);
    position: relative;
    white-space: nowrap;
}

.site-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #388e3c, #2c5738);
    transition: width 0.3s ease;
    border-radius: 2px;
    opacity: 0;
}

.logo:hover .site-name::after {
    width: 100%;
    opacity: 1;
}

/* Responsive adjustments for the logo */
@media (max-width: 600px) {
    .site-name {
        font-size: 1.4rem;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
}

@media (min-width: 1200px) {
    .site-name {
        font-size: 1.8rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border-radius: 10px;
    box-shadow: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 800px;
    box-sizing: border-box;
}

.search-input {
    padding: 0.75rem 1.5rem;
    border: 2px solid #d7ecd7;
    border-radius: 24px;
    font-size: 1rem;
    background: #fff;
    color: #222;
    outline: none;
    min-width: 180px;
    flex: 1;
    max-width: 100%;
    box-sizing: border-box;
    transition: border 0.2s, box-shadow 0.2s, background 0.2s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.search-input::placeholder {
    color: #4d7c5a;
    opacity: 1;
    font-weight: 500;
}

.search-input:focus {
    border: 2px solid #256029;
    background: #f6fbf7;
    box-shadow: 0 0 0 3px rgba(56,142,60,0.12);
}

.search-input:hover {
    border: 2px solid #388e3c;
    background: #f6fbf7;
    box-shadow: 0 2px 12px rgba(56,142,60,0.13);
}

.search-btn {
    background: #388e3c;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 1px 2px rgba(56,142,60,0.08);
    min-height: 44px;
    touch-action: manipulation;
}

.search-btn:hover {
    background: #256029;
}

.badge-fulltime {
    background: #c8e6c9;
    color: #388e3c;
}
.badge-contract {
    background: #e0f2f1;
    color: #00796b;
}

/* Filter dropdown styles */
.filter-dropdown {
    background: #d7ecd7;
    color: #388e3c;
    border: none;
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    margin-right: 0;
    margin-bottom: 0;
    box-shadow: 0 1px 2px rgba(56,142,60,0.06);
    cursor: pointer;
    appearance: none;
    transition: background 0.2s, color 0.2s;
}

.filter-dropdown:focus, .filter-dropdown:hover {
    outline: none;
    background: #388e3c;
    color: #fff;
}

@media (max-width: 900px) {
    .job-board-container {
        flex-direction: column;
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    .job-list-sidebar {
        width: 100%;
        margin-bottom: 1rem;
        box-sizing: border-box;
    }
    .job-details-main {
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    .header {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        gap: 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    .search-bar {
        width: 100%;
        flex-direction: column;
        gap: 0.75rem;
        box-shadow: none;
        background: none;
        margin-left: 0;
        padding: 0;
        box-sizing: border-box;
    }
    .search-input {
        width: 100%;
        min-width: 0;
        padding: 0.875rem 1.5rem;
        font-size: 16px;
        box-sizing: border-box;
    }
    .search-btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 16px;
        box-sizing: border-box;
    }
}

.job-details-card .job-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #388e3c;
    margin-bottom: 0.2rem;
}

.job-details-card .job-company {
    color: #666;
    font-size: 1.25rem;
    margin-bottom: 1.1rem;
}

/* Skeleton Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.skeleton {
    background: linear-gradient(90deg, 
        #f0f0f0 0%,
        #f8f8f8 20%,
        #f0f0f0 40%,
        #f0f0f0 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
    border-radius: 4px;
    display: block;
}

.skeleton-title {
    height: 2.2rem;
    width: 70%;
    margin-bottom: 0.5rem;
}

.skeleton-company {
    height: 1.25rem;
    width: 50%;
    margin-bottom: 1rem;
}

.skeleton-meta {
    height: 1.1rem;
    width: 30%;
    margin-bottom: 1.5rem;
}

.skeleton-section {
    height: 1.25rem;
    width: 40%;
    margin: 2rem 0 1rem 0;
}

.skeleton-list-item {
    height: 1rem;
    width: 100%;
    margin-bottom: 0.75rem;
}

.skeleton-list-item:last-child {
    width: 80%;
}

.job-details-card.loading {
    pointer-events: none;
}

.job-details-card.loading .job-header,
.job-details-card.loading ul,
.job-details-card.loading .apply-btn {
    display: none;
}

.job-details-card.loading .skeleton {
    display: block;
}

.job-details-card:not(.loading) .skeleton {
    display: none;
}

/* Job List Skeleton Loading */
.job-list.loading .job-card {
    display: none;
}

.job-list-skeleton {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.job-list.loading .job-list-skeleton {
    display: block;
}

.skeleton-job-card {
    background: #fff;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.skeleton-job-title {
    height: 24px;
    width: 70%;
    margin-bottom: 12px;
}

.skeleton-job-company {
    height: 16px;
    width: 50%;
    margin-bottom: 12px;
}

.skeleton-job-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.skeleton-job-type {
    height: 20px;
    width: 80px;
}

.skeleton-job-salary {
    height: 20px;
    width: 120px;
}

.skeleton-job-posted {
    height: 16px;
    width: 60px;
}

.skeleton-benefits {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.skeleton-benefit {
    height: 20px;
    width: 100px;
    border-radius: 10px;
}

/* Job Details Skeleton */
.job-details-card.loading .job-content {
    display: none;
}

.skeleton-details {
    padding: 1.5rem;
    display: none;
}

.job-details-card.loading .skeleton-details {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

.skeleton-details-title {
    height: 32px;
    width: 80%;
    margin-bottom: 16px;
}

.skeleton-details-company {
    height: 20px;
    width: 60%;
    margin-bottom: 16px;
}

.skeleton-details-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.skeleton-details-type {
    height: 24px;
    width: 100px;
}

.skeleton-details-salary {
    height: 24px;
    width: 150px;
}

.skeleton-details-posted {
    height: 24px;
    width: 80px;
}

.skeleton-details-section {
    margin: 32px 0;
}

.skeleton-details-header {
    height: 24px;
    width: 40%;
    margin-bottom: 16px;
}

.skeleton-details-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.skeleton-details-item {
    height: 16px;
    width: 100%;
}

.skeleton-details-item:last-child {
    width: 80%;
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@section Scripts {
    <script>
        document.addEventListener('DOMContentLoaded', function() {
            const jobCards = document.querySelectorAll('.job-card');
            const jobDetailsCard = document.getElementById('jobDetailsCard');
            const jobList = document.getElementById('jobList');
            const pageButtons = document.querySelectorAll('.page-btn');

            // Function to show job details skeleton loading
            function showJobDetailsSkeleton() {
                jobDetailsCard.innerHTML = `
                    <div class="skeleton skeleton-title"></div>
                    <div class="skeleton skeleton-company"></div>
                    <div class="skeleton skeleton-meta"></div>
                    <hr />
                    <div class="skeleton skeleton-section"></div>
                    <div class="skeleton skeleton-list-item"></div>
                    <div class="skeleton skeleton-list-item"></div>
                    <div class="skeleton skeleton-list-item"></div>
                    <div class="skeleton skeleton-section"></div>
                    <div class="skeleton skeleton-list-item"></div>
                    <div class="skeleton skeleton-list-item"></div>
                    <div class="skeleton skeleton-list-item"></div>
                    <div class="skeleton skeleton-section"></div>
                    <div class="skeleton skeleton-list-item"></div>
                    <div class="skeleton skeleton-list-item"></div>
                    <div class="skeleton skeleton-list-item"></div>
                `;
                jobDetailsCard.classList.add('loading');
            }

            // Handle job card clicks
            jobCards.forEach(card => {
                card.addEventListener('click', function(e) {
                    e.preventDefault();
                    const jobId = this.dataset.jobId;
                    if (jobId) {
                        // Show loading state for job details
                        showJobDetailsSkeleton();
                        
                        // Update selected state
                        jobCards.forEach(c => c.classList.remove('selected'));
                        this.classList.add('selected');

                        // Add delay before navigation
                        setTimeout(() => {
                            window.location.href = `?page=@Model.CurrentPage&selectedJobId=${jobId}`;
                        }, 2500); // 2.5 second delay
                    }
                });
            });

            // Handle pagination clicks
            pageButtons.forEach(button => {
                button.addEventListener('click', function(e) {
                    e.preventDefault();
                    const page = this.dataset.page;
                    if (page) {
                        // Show loading state for job list
                        jobList.classList.add('loading');
                        
                        // Show loading state for job details
                        showJobDetailsSkeleton();

                        // Add delay before navigation
                        setTimeout(() => {
                            window.location.href = `?page=${page}&selectedJobId=@Model.SelectedJobId`;
                        }, 2500); // 2.5 second delay
                    }
                });
            });
        });
    </script>
}

@media (max-width: 600px) {
    .job-board-container {
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .job-details-card {
        padding: 0;
        overflow-y: auto;
        width: 100%;
        box-sizing: border-box;
    }
    
    .job-details-header {
        padding: 1rem;
        position: static;
        width: 100%;
        box-sizing: border-box;
    }
    
    .job-details-content {
        padding: 0 1rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .job-details-card hr {
        margin: 1rem;
        width: calc(100% - 2rem);
        box-sizing: border-box;
    }

    .job-details-card ul {
        width: 100%;
        box-sizing: border-box;
        padding: 1rem 1.5rem;
        margin: 0.5rem 0;
    }

    .job-header {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        padding-bottom: 0.7rem;
    }
    .apply-btn {
        width: 100%;
        margin-left: 0;
        margin-top: 1rem;
        justify-content: center;
    }
    .job-card h3.job-title {
        font-size: 1.6rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
        font-weight: 700;
    }
    .job-details-header h3.job-title {
        font-size: 1.3rem;
    }
    .section-header {
        font-size: 1.1rem;
        margin-top: 1.25rem;
        margin-bottom: 0.5rem;
    }
    .job-meta-row {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex-wrap: nowrap;
        margin-bottom: 0.5rem;
    }
    .job-type {
        margin-right: 0;
    }
    .job-posted {
        font-size: 0.8rem;
        margin-left: 0;
        white-space: nowrap;
    }
    .featured-job-example .job-meta-row {
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
        gap: 0.5rem;
        justify-content: flex-start;
        margin-bottom: 0.5rem;
    }
    .featured-job-example .job-type {
        margin-right: 0;
        min-width: 90px;
        padding: 0.4rem 1.2rem;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        border-radius: 8px;
        text-align: center;
        height: auto;
        font-size: 1rem;
    }
    .featured-job-example .job-posted {
        margin-left: 0;
        font-size: 0.9rem;
        white-space: nowrap;
        color: #bfa100;
        font-weight: 500;
    }
}

/* Tablet styles (600px - 1023px) */
@media (min-width: 600px) and (max-width: 1023px) {
    body {
        margin-bottom: 36px;
    }
    .job-board-container {
        padding: 1.5rem 1.5rem 1.5rem 1.5rem;
        min-height: calc(100vh - 90px);
        flex-direction: column;
    }
    
    .job-list-sidebar {
        width: 100%;
        padding: 1.25rem;
    }
    
    .job-details-main {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        z-index: 1000;
        padding: 1.5rem;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    }
    
    .job-details-main.active {
        display: block;
    }
    
    .job-details-card {
        padding: 0;
        max-height: none;
        overflow-y: auto;
    }
    
    .job-details-header {
        padding: 1.25rem 1.25rem 0;
        position: static;
    }
    
    .job-details-content {
        padding: 0 1.25rem 1.25rem;
    }
    
    .job-details-card hr {
        margin: 1rem 1.25rem;
    }
    
    /* Optimize job cards for touch */
    .job-card {
        padding: 1rem 1.25rem;
        margin-bottom: 1rem;
        min-height: 110px; /* Ensure good touch target size */
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(56,142,60,0.1); /* Better touch feedback */
    }

    .job-card:active {
        background: #f4fbf4;
        transform: scale(0.995);
    }
    
    .back-button {
        position: sticky;
        top: 0;
        left: 0;
        background: #388e3c;
        color: white;
        border: none;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-weight: bold;
        cursor: pointer;
        margin-bottom: 1.5rem;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        min-height: 48px; /* Better touch target */
        font-size: 1.1rem; /* Slightly larger for better readability */
    }
    
    .back-button:hover {
        background: #2e7d32;
    }

    /* Improved typography for better readability */
    .job-header .job-title {
        font-size: 1.7rem;
        line-height: 1.4;
    }
    
    .job-header .job-company {
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
    }
    
    .job-type {
        font-size: 0.9rem;
        padding: 0.25rem 0.75rem;
    }
    
    .job-salary {
        font-size: 1rem;
        padding: 0.35rem 0.9rem;
    }
    
    .job-posted {
        font-size: 0.9rem;
    }
    
    /* Optimize benefits display */
    .job-benefits {
        margin-top: 10px;
        gap: 8px;
    }

    .job-benefit {
        font-size: 0.9rem;
        padding: 4px 12px;
        max-width: 160px;
    }
    
    .apply-btn {
        font-size: 1.1rem;
        padding: 0.75rem 1.5rem;
        min-width: 140px;
        min-height: 48px;
        margin-top: 1rem;
    }
    
    .job-header {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }

    /* Improve list readability */
    .job-details-card ul {
        padding: 1.25rem 2rem;
        line-height: 1.6;
    }

    .job-details-card ul li {
        margin-bottom: 0.75rem;
        font-size: 1rem;
    }

    .section-header {
        font-size: 1.3rem;
        margin-top: 1.75rem;
        margin-bottom: 1rem;
    }
}

/* Desktop styles (1024px+) */
@media (min-width: 1024px) {
    .job-board-container {
        gap: 1.5rem;
        padding: 2rem;
        margin: 0 auto;
    }

    .job-list-sidebar {
        width: 380px;
    }

    .job-details-main {
        padding-right: 1rem;
        position: sticky;
        top: 2rem;
        height: calc(100vh - 4rem);
        overflow: hidden;
    }

    .job-details-card {
        display: flex;
        flex-direction: column;
        height: 100%;
        overflow-y: auto;
    }

    .job-details-header {
        position: relative;
        background: #fff;
        z-index: 10;
    }

    .job-details-content {
        flex: 1;
    }

    .job-details-card::-webkit-scrollbar {
        width: 8px;
    }

    .job-details-card::-webkit-scrollbar-track {
        background: #f0f4f0;
        border-radius: 4px;
    }

    .job-details-card::-webkit-scrollbar-thumb {
        background: #388e3c;
        border-radius: 4px;
    }

    .job-details-card::-webkit-scrollbar-thumb:hover {
        background: #2e7d32;
    }

    .job-header {
        padding: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .section-header {
        margin-top: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .job-details-card ul {
        padding: 1rem 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .job-details-card hr {
        margin: 1rem 0;
    }
    
    .apply-btn {
        margin-top: 0.5rem;
    }

    .job-details-header h3.job-title {
        font-size: 1.2rem;
    }

    .section-header {
        font-size: 1.2rem;
    }
}

/* Large desktop (1200px+) */
@media (min-width: 1200px) {
    .job-board-container {
        gap: 2rem;
        max-width: 1400px;
        margin: 0 auto;
        padding: 2rem 4rem;
    }

    .job-list-sidebar {
        width: 400px;
    }

    .job-header .job-title {
        font-size: 1.5rem;
    }
    
    .job-header .job-company {
        font-size: 1rem;
    }
    
    .job-salary {
        font-size: 1rem;
    }
}

/* Mobile optimizations for job cards */
@media (max-width: 599px) {
    body {
        margin-bottom: 32px;
    }
    
    .job-board-container {
        padding: 1rem 1rem 1.5rem 1rem;
        min-height: calc(100vh - 80px);
        flex-direction: column;
    }
    
    .job-list-sidebar {
        width: 100%;
    }
    
    .job-details-main {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        z-index: 1000;
        padding: 1rem;
        overflow-y: auto;
    }
    
    .job-details-main.active {
        display: block;
    }
    
    .job-details-card {
        box-shadow: none;
        padding: 1rem;
        position: relative;
        max-height: none;
    }
    
    .back-button {
        position: sticky;
        top: 0;
        left: 0;
        background: #388e3c;
        color: white;
        border: none;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        font-weight: bold;
        cursor: pointer;
        margin-bottom: 1rem;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
    }
    
    .back-button:hover {
        background: #2e7d32;
    }

    /* Job card optimizations */
    .job-card {
        padding: 0.75rem;
        margin-bottom: 0.375rem;
    }

    .job-card .job-title {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
        line-height: 1.3;
    }

    .job-card .job-company {
        font-size: 0.9rem;
        margin-bottom: 0.35rem;
    }

    .job-meta-row {
        gap: 0.35rem;
        flex-wrap: wrap;
    }

    .job-type {
        font-size: 0.75rem;
        padding: 0.15rem 0.5rem;
    }

    .job-salary {
        font-size: 0.8rem;
        padding: 0.25rem 0.6rem;
    }

    .job-posted {
        font-size: 0.85rem;
        order: 3;
        width: 100%;
        margin-top: 0.25rem;
    }

    .job-benefits {
        margin-top: 8px;
        gap: 6px;
    }

    .job-benefit {
        font-size: 0.75rem;
        padding: 2px 8px;
        max-width: 120px;
    }

    .apply-btn {
        width: 100%;
        margin-left: 0;
        margin-top: 1rem;
        justify-content: center;
        min-height: 48px;
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}

.job-benefits {
    margin-top: 8px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    padding: 2px 0;
}

.job-benefit {
    font-size: 0.8rem;
    color: #2c5282;
    background-color: #ebf8ff;
    padding: 3px 10px;
    border-radius: 12px;
    border: 1px solid #bee3f8;
    white-space: normal;
    overflow: visible;
    max-width: none;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    line-height: 1.2;
}

.job-benefit::before {
    content: "★";
    margin-right: 4px;
    color: #4299e1;
    font-size: 0.85em;
    line-height: 0;
    position: relative;
    top: -0.5px;
}

.job-benefit:hover {
    background-color: #e6fffa;
    border-color: #81e6d9;
    color: #234e52;
    transform: translateY(-1px);
}

/* Add responsive styles for benefits */
@media (max-width: 600px) {
    .job-benefit {
        font-size: 0.75rem;
        padding: 2px 8px;
    }
    
    .job-benefits {
        margin-top: 6px;
        gap: 4px;
    }
}

/* Heading Styles */
h1 {
    margin: 0;
    padding: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Load More Button Styles */
.load-more-container {
    margin: 0.25rem 0;
    text-align: center;
    padding: 0 1rem;
}

.load-more-btn {
    background: linear-gradient(to bottom, #388e3c, #2e7d32);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
    position: relative;
    min-height: 42px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.load-more-btn:hover {
    background: linear-gradient(to bottom, #2e7d32, #1b5e20);
    transform: translateY(-1px);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
}

.load-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Mobile Styles */
@media (max-width: 600px) {
    .job-card {
        margin-bottom: 0.375rem;
    }

    .job-card:last-child {
        margin-bottom: 0.125rem;
    }

    .load-more-container {
        margin: 0.125rem 0;
        padding: 0 0.75rem;
    }

    .load-more-btn {
        font-size: 1rem;
        padding: 0.75rem 1.25rem;
        min-height: 48px;
        max-width: none;
        border-radius: 10px;
    }
}

/* Tablet styles (600px - 1023px) */
@media (min-width: 600px) and (max-width: 1023px) {
    .load-more-container {
        padding: 0 1.25rem;
    }

    .load-more-btn {
        max-width: none;
        min-height: 48px;
        font-size: 1rem;
        border-radius: 10px;
    }
}

/* Desktop styles (1024px+) */
@media (min-width: 1024px) {
    .load-more-btn {
        max-width: 180px;
    }
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #388e3c;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 0;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    transition: transform 0.2s ease;
    color: white;
    stroke: currentColor;
}

.back-to-top:hover {
    background: #2e7d32;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover svg {
    transform: translateY(-2px);
}

.back-to-top:active {
    transform: translateY(0);
}

.back-to-top:active svg {
    transform: translateY(0);
}

/* Mobile Styles */
@media (max-width: 600px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

.job-company a {
    color: #1B5E20;
    text-decoration: underline;
    transition: all 0.2s ease;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
}

.job-company a:hover {
    color: #2E7D32;
    background-color: rgba(46, 125, 50, 0.08);
}

.back-button {
    display: none; /* Hide by default on desktop */
}

@media (max-width: 1023px) {
    .back-button {
        display: flex; /* Show only on mobile/tablet */
        position: sticky;
        top: 0;
        left: 0;
        background: #388e3c;
        color: white;
        border: none;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-weight: bold;
        cursor: pointer;
        margin-bottom: 1.5rem;
        width: 100%;
        align-items: center;
        justify-content: center;
        z-index: 10;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        min-height: 48px;
        font-size: 1.1rem;
    }
    
    .back-button:hover {
        background: #2e7d32;
    }
}

/* Load More Skeleton Styles */
.load-more-skeleton {
    display: none;
    margin-top: 1rem;
}

.job-list.loading-more .load-more-skeleton {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

.post-job-container {
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
}

.post-job-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(to bottom, #388e3c, #256029);
    color: #fff;
    text-decoration: none;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(56, 142, 60, 0.15);
    width: 100%;
    min-height: 48px;
}

.post-job-button::before {
    content: "+";
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
}

.post-job-button:hover {
    background: linear-gradient(to bottom, #256029, #1b4d1f);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(56, 142, 60, 0.2);
}

.post-job-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(56, 142, 60, 0.1);
}

@media (max-width: 768px) {
    .post-job-button {
        font-size: 1rem;
        padding: 0.75rem 1.25rem;
    }
}

/* Post Job Page Styles */
.post-info-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.post-info-container h1 {
    color: #1a472a;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #388e3c;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.duration {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100%;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1.13rem;
    color: #2c3e50;
    margin-bottom: 1.1rem;
    font-weight: 500;
    text-align: left;
    line-height: 1.5;
    max-width: 600px;
}

.pricing-features .feature-icon {
    flex-shrink: 0;
    margin-top: 0.15em;
}

.contact-info {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e6f2e6;
}

.contact-info p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-email {
    display: inline-block;
    background: linear-gradient(to bottom, #388e3c, #256029);
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(56, 142, 60, 0.15);
}

.contact-email:hover {
    background: linear-gradient(to bottom, #256029, #1b4d1f);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(56, 142, 60, 0.2);
}

.contact-email:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(56, 142, 60, 0.1);
}

/* Post Job Page Responsive Styles */
@media (max-width: 768px) {
    .post-info-container {
        margin: 1.5rem auto;
    }

    .post-info-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-header h2 {
        font-size: 1.5rem;
    }

    .price {
        font-size: 3rem;
    }

    .pricing-features li {
        font-size: 1rem;
    }

    .contact-email {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .post-info-container {
        margin: 1rem auto;
    }

    .post-info-container h1 {
        font-size: 1.75rem;
    }

    .pricing-card {
        padding: 1.25rem;
    }

    .price {
        font-size: 2.5rem;
    }
}

/* Hide search boxes for specific pages */
.hide-search .search-bar {
    display: none;
}

body.hide-search-bar .search-bar {
    display: none !important;
}

.contact-email-section {
    background: #f6fbf7;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(56, 142, 60, 0.07);
    padding: 2rem 1.5rem;
    margin: 2rem auto 0 auto;
    max-width: 480px;
    text-align: center;
}

.selectable-email {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 600;
    color: #256029;
    background: #e6f2e6;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    margin: 1rem 0 0.5rem 0;
    cursor: pointer;
    user-select: all;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 4px rgba(56,142,60,0.08);
    outline: none;
}

.selectable-email:focus, .selectable-email:hover {
    background: #c8e6c9;
    color: #1a472a;
    box-shadow: 0 2px 8px rgba(56,142,60,0.15);
}

.email-hint {
    color: #888;
    font-size: 0.95rem;
    margin-top: 0.25rem;
}

.post-job-page {
    max-width: 600px;
    margin: 0 auto;
    padding: 1.5rem 0.5rem 2.5rem 0.5rem;
}

.pricing-card.enhanced {
    background: linear-gradient(135deg, #f6fbf7 60%, #e6f2e6 100%);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(56, 142, 60, 0.08);
    padding: 2.5rem 2rem 2rem 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.price-row {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #388e3c;
    line-height: 1;
    letter-spacing: -1px;
}

.duration {
    color: #666;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #e6f2e6 10%, #c8e6c9 50%, #e6f2e6 90%);
    border-radius: 2px;
    margin: 2.5rem 0 2rem 0;
    opacity: 0.7;
}

.pricing-features ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.13rem;
    color: #2c3e50;
    margin-bottom: 1.1rem;
    font-weight: 500;
}

.feature-icon {
    color: #43a047;
    font-size: 1.25em;
    font-weight: bold;
    margin-right: 0.25em;
    display: inline-block;
}

.contact-email-section.enhanced-contact {
    background: #f6fbf7;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(56, 142, 60, 0.09);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    margin: 0 auto;
    max-width: 420px;
    text-align: center;
}

.contact-email-section.enhanced-contact h2 {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a472a;
}

.contact-sub {
    color: #256029;
    font-size: 1.08rem;
    margin-bottom: 0.7rem;
}

.selectable-email {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 600;
    color: #256029;
    background: #e6f2e6;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    margin: 1rem 0 0.5rem 0;
    cursor: pointer;
    user-select: all;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 4px rgba(56,142,60,0.08);
    outline: none;
}

.selectable-email:focus, .selectable-email:hover {
    background: #c8e6c9;
    color: #1a472a;
    box-shadow: 0 2px 8px rgba(56,142,60,0.15);
}

.email-hint {
    color: #888;
    font-size: 0.95rem;
    margin-top: 0.25rem;
}

@media (max-width: 600px) {
    .post-job-page {
        padding: 0.5rem 0.1rem 1.5rem 0.1rem;
    }
    .pricing-card.enhanced {
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    }
    .contact-email-section.enhanced-contact {
        padding: 1.2rem 0.5rem 1rem 0.5rem;
        max-width: 98vw;
    }
    .price {
        font-size: 2.2rem;
    }
    .duration {
        font-size: 1rem;
    }
    .pricing-features li {
        font-size: 1rem;
        margin-bottom: 0.7rem;
    }
}

.combined-card .contact-email-section.inside-card {
    background: none;
    box-shadow: none;
    border-radius: 0;
    margin: 2.2rem 0 0 0;
    padding: 0 0 0.5rem 0;
    max-width: 100%;
}

.combined-card .contact-email-section.inside-card h2 {
    margin-top: 0.5rem;
    font-size: 1.25rem;
    color: #1a472a;
}

.combined-card .contact-sub {
    margin-bottom: 0.5rem;
}

.combined-card .selectable-email {
    margin: 1rem 0 0.5rem 0;
}

.combined-card .email-hint {
    margin-bottom: 0;
}

.combined-card .divider {
    display: none;
}

.featured-job-example-label {
    margin: 2.2rem 0 2.2rem 0;
    font-size: 1.08rem;
    color: #bfa100;
    font-weight: 600;
    text-align: left;
}

.featured-job-example {
    background: linear-gradient(90deg, #fffbe6 80%, #fff9c4 100%);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(191, 161, 0, 0.08);
    padding: 1.3rem 1.5rem 1.1rem 1.5rem;
    margin-bottom: 2rem;
    margin-top: 0.2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    border: 1.5px solid #ffe082;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -1.1rem;
    left: 1.2rem;
    background: linear-gradient(90deg, #ffe082 60%, #fffde7 100%);
    color: #bfa100;
    font-size: 0.98rem;
    font-weight: 700;
    padding: 0.3rem 1.1rem;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(191, 161, 0, 0.08);
    letter-spacing: 0.5px;
    z-index: 2;
    margin-bottom: 0.5rem;
}

.featured-job-example .job-title,
.featured-job-example .job-company {
    text-align: left;
    margin-left: 0;
}

.featured-job-example .job-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #263238;
    margin-bottom: 0.35rem;
    margin-top: 0.7rem;
}

.featured-job-example .job-company {
    color: #757575;
    font-size: 1.02rem;
    margin-bottom: 0.7rem;
}

.featured-job-example .job-meta-row {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    margin-top: 0.2rem;
}

.featured-job-example .job-type.badge-fulltime {
    background: #dce775;
    color: #558b2f;
    border-radius: 7px;
    padding: 0.32rem 1.1rem;
    font-size: 0.98rem;
    font-weight: 600;
    box-shadow: 0 1px 2px rgba(191, 161, 0, 0.07);
}

.featured-job-example .job-posted {
    color: #bfa100;
    font-size: 0.98rem;
    font-weight: 500;
} 