/* Navigation entre postes */
.job-navigation {
    background: white;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 80px;
    z-index: 40;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.job-navigation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.job-nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-secondary);
    color: var(--primary);
    border: 2px solid transparent;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.job-nav-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateX(-3px);
}

.job-nav-btn.next:hover {
    transform: translateX(3px);
}

.job-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.job-nav-btn:disabled:hover {
    background: var(--bg-secondary);
    color: var(--primary);
    transform: none;
}

.job-nav-info {
    flex: 1;
    text-align: center;
}

.job-nav-current {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.job-nav-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.job-nav-actions {
    display: flex;
    gap: 1rem;
}

.job-action-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #0B3D59 0%, #C5A059 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.job-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 61, 89, 0.3);
}

.job-action-btn.secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.job-action-btn.secondary:hover {
    background: var(--primary);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .job-navigation-container {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }
    
    .job-nav-info {
        order: -1;
    }
    
    .job-nav-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .job-action-btn {
        width: 100%;
        justify-content: center;
    }
    
    .job-nav-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}
