/* All Jobs Specific Styles */
.jobs-list-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.jobs-list-container h1 {
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.job-count {
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
}

#jobsContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.job-card {
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 900px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-align: center;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.company-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 1rem;
    border-radius: 8px;
    background: white;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.job-info {
    margin-bottom: 1rem;
}

.job-title {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.company-name {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.job-meta span {
    background-color: #f3f7fc;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #5a6b7c;
}

.job-type {
    background-color: #e1f7e3 !important;
    color: #27ae60 !important;
    font-weight: 500;
}

.job-category {
    background-color: #e8eaf6 !important;
    color: #3f51b5 !important;
    font-weight: 500;
}

.job-desc {
    color: #566573;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.requirements {
    background-color: #fffaf3;
    padding: 0.8rem;
    border-radius: 8px;
    border-left: 4px solid #f39c12;
    font-size: 0.95rem;
    color: #7e6c51;
    margin-top: 1rem;
    text-align: left;
}

.requirements strong {
    color: #e67e22;
}

/* Apply button */
.apply-btn {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    width: 100%;
    max-width: 200px;
}

.apply-btn:hover {
    background: linear-gradient(to right, #5809b5, #1c64e0);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 117, 252, 0.3);
}

/* Job badge for all jobs */
.job-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(106, 17, 203, 0.3);
    text-transform: capitalize;
}

/* Different colors for different categories */
.job-badge.product {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}

.job-badge.service {
    background: linear-gradient(135deg, #2575fc 0%, #2cac90 100%);
}

/* Hide navigation on mobile */
@media (max-width: 768px) {
    nav {
        display: none !important;
    }
    
    .job-card {
        padding: 1.2rem;
    }
    
    .job-meta {
        gap: 0.5rem;
    }
    
    .job-badge {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .jobs-list-container h1 {
        font-size: 2rem;
    }
    
    .job-title {
        font-size: 1.3rem;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}