* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.job-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 20px 0;
}

.job-table th {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    padding: 18px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
    border-bottom: 3px solid #1B5E20;
}

.job-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #E8F5E9;
    color: #333;
    font-size: 1rem;
}

.job-table tr:last-child td {
    border-bottom: none;
}

.job-table tr:nth-child(even) {
    background-color: #F9FDF8;
}

.job-table tr:hover {
    background-color: #E8F5E9;
}

.icon-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #2E7D32;
}

.icon-cell i {
    color: #4CAF50;
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.highlight {
    background: linear-gradient(135deg, #FFEB3B, #FBC02D) !important;
    color: #5D4037;
    font-weight: 700;
}

.highlight .icon-cell {
    color: #5D4037;
}

.highlight .icon-cell i {
    color: #FF9800;
}

.apply-button {
    background: linear-gradient(135deg, #2196F3, #0D47A1);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
}

.apply-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .job-table {
        display: block;
        border-radius: 8px;
    }
    
    .job-table thead {
        display: none;
    }
    
    .job-table tbody, .job-table tr, .job-table td {
        display: block;
        width: 100%;
    }
    
    .job-table tr {
        margin-bottom: 15px;
        border: 2px solid #4CAF50;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .job-table td {
        padding: 12px 15px;
        border-bottom: 1px solid #E8F5E9;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .job-table td:before {
        content: attr(data-label);
        font-weight: 700;
        color: #2E7D32;
        margin-right: 10px;
    }
    
    .icon-cell {
        justify-content: space-between;
        width: 100%;
    }
    
    .icon-cell span {
        display: none;
    }
    
    .apply-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .job-table td {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .icon-cell i {
        font-size: 1rem;
    }
}