/* Work With Us Plugin - Frontend Styles */

.work-positions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.positions-table {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.table-header {
    background: linear-gradient(135deg, #DCA8D6 0%, #A56BA7 100%) !important;
    color: white;
    padding: 30px;
    text-align: center;
}

.table-header h3 {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 600;
}

.table-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 16px;
}

.position-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.position-item:last-child {
    border-bottom: none;
}

.position-item:hover {
    background-color: #f8f9ff;
}

.position-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.position-region {
    color: #333;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.position-region:before {
    content: "📍";
    margin-right: 8px;
}

.position-type {
    background: #A56BA7 !important;
    color: #fff !important;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    justify-self: end;
}

/* Responsive Design */
@media (max-width: 768px) {
    .work-positions-container {
        padding: 15px;
    }
    
    .position-item {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
        padding: 15px 20px;
    }
    
    .position-type {
        justify-self: center;
        margin-top: 5px;
    }
    
    .table-header {
        padding: 20px 15px;
    }
    
    .table-header h3 {
        font-size: 24px;
    }
    
    .table-header p {
        font-size: 14px;
    }
    
    .position-title {
        font-size: 16px;
    }
    
    .position-region {
        font-size: 13px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .work-positions-container {
        padding: 10px;
    }
    
    .table-header {
        padding: 15px 10px;
    }
    
    .table-header h3 {
        font-size: 20px;
    }
    
    .position-item {
        padding: 12px 15px;
    }
}