
.job-listing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 38px 0;
    border-top: 1px solid black;
    transition: all 0.2s ease;
    position: relative;
}

.job-listing-item:hover {
   
    transform: translateY(-2px);
}

.job-listing-content {
    display: flex;
    align-items: center;
    gap: 180px;
    flex: 1;
}

.job-meta {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 4px;
    min-width: 100px;
}

.job-type {
    font-size: 14px;
    font-weight: 700;
    color: #b0b2b6;
}

.job-location {
    font-size: 14px;
    font-weight: 700;
    color: #b0b2b6;
}

.job-salary {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    min-width: 140px;
}

.job-details {
    flex: 1;
}

.job-title {
 font-size: 22px;
    word-spacing: 2px;
    font-weight: 400;
   color: #111111;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.job-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    max-width: 600px;
}

.job-actions {
    display: flex;
    align-items: center;
}

.explore-more-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease; 
}

.explore-more-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #111827;
    text-decoration: none;
}

.explore-more-btn svg {
    transition: transform 0.2s ease;
}

.explore-more-btn:hover svg {
    transform: translateX(2px);
}

.job-listings-load-more {
    text-align: center;
    margin-top: 40px; 
}
.job-info {
    display:flex;
    flex-direction: column;
    align-items: center;
    gap:12px;
}

#load-more-jobs {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

#load-more-jobs:hover {
    background: #2563eb;
}

#load-more-jobs:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .job-listing-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
    }
    
    .job-listing-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
    }
    
    .job-meta {
        flex-direction: row;
        gap: 12px;
    }
    
    .job-salary {
        align-self: flex-start;
    }
    
    .job-actions {
        align-self: flex-end;
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 480px) {

    
    .job-listing-item {
        padding: 16px;
    }
    
    .job-title {
        font-size: 18px;
    }
    
    .job-salary {
        font-size: 16px;
    }
}
